mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-14 13:54:09 +00:00
Remove assembly from patcher.h
This commit is contained in:
parent
e7c18fc17f
commit
184a80cc3b
2 changed files with 4 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue