diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-03-27 21:20:28 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-03-27 21:25:39 +0100 |
commit | 184a80cc3b7ecd054f09ec5519fded5fb4efa162 (patch) | |
tree | a2bff32a40052ee9740c82f88e403f003c3d03ad /src/core/re3.cpp | |
parent | removed windows.h for most .cpps (diff) | |
download | re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar.gz re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar.bz2 re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar.lz re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar.xz re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.tar.zst re3-184a80cc3b7ecd054f09ec5519fded5fb4efa162.zip |
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r-- | src/core/re3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 137a890c..ffb2a7a2 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -71,7 +71,7 @@ InjectHook_internal(uint32 address, uint32 hook, int type) break; } - *(ptrdiff_t*)(address + 1) = hook - address - 5; + *(ptrdiff_t*)(address + 1) = (uintptr_t)hook - (uintptr_t)address - 5; if(type == PATCH_NOTHING) VirtualProtect((void*)(address + 1), 4, protect[0], &protect[1]); else |