diff options
author | aap <aap@papnet.eu> | 2019-06-24 22:06:14 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-24 22:06:14 +0200 |
commit | 3b43c0957893e06f832f2097225ae83b09f86199 (patch) | |
tree | 421a6083b469dbce38531a128db1f5dd5a5a6174 /src/entities/Entity.cpp | |
parent | fixed bug in CPlaceable (diff) | |
download | re3-3b43c0957893e06f832f2097225ae83b09f86199.tar re3-3b43c0957893e06f832f2097225ae83b09f86199.tar.gz re3-3b43c0957893e06f832f2097225ae83b09f86199.tar.bz2 re3-3b43c0957893e06f832f2097225ae83b09f86199.tar.lz re3-3b43c0957893e06f832f2097225ae83b09f86199.tar.xz re3-3b43c0957893e06f832f2097225ae83b09f86199.tar.zst re3-3b43c0957893e06f832f2097225ae83b09f86199.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Entity.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/entities/Entity.cpp b/src/entities/Entity.cpp index d2b2577d..294518c8 100644 --- a/src/entities/Entity.cpp +++ b/src/entities/Entity.cpp @@ -339,9 +339,9 @@ CEntity::GetBoundRect(void) return rect; } -void +WRAPPER void CEntity::PreRender(void) -{ +{ EAXJMP(0x474350); } void @@ -448,6 +448,7 @@ CEntity::PruneReferences(void) } STARTPATCHES + InjectHook(0x473C30, &CEntity::ctor, PATCH_JUMP); InjectHook(0x4742C0, (void (CEntity::*)(CVector&))&CEntity::GetBoundCentre, PATCH_JUMP); InjectHook(0x474310, &CEntity::GetBoundRadius, PATCH_JUMP); InjectHook(0x474C10, &CEntity::GetIsTouching, PATCH_JUMP); |