Browse Source

Fix for ARM64 offset patcher

pull/20/head
Valentin Radu 4 years ago
parent
commit
f84375a513
  1. 3
      ExplorerPatcher/dllmain.c

3
ExplorerPatcher/dllmain.c

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

Loading…
Cancel
Save