1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-02-17 11:08:41 +01:00

Fix for ARM64 offset patcher

This commit is contained in:
Valentin Radu 2021-09-03 02:18:22 +03:00
parent 0c19f6e4ad
commit f84375a513

View File

@ -3326,7 +3326,8 @@ __declspec(dllexport) DWORD WINAPI main(
);
instruction <<= 8;
instruction >>= 13;
instruction &= 0b00010100000000000000000000000000;
instruction &= 0b00010111111111111111111111111111;
instruction |= 0b00010100000000000000000000000000;
memcpy(
(LPVOID)dwInjectedAddr,
&instruction,