diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-16 15:30:47 +0300 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-16 15:30:47 +0300 |
commit | 83cbe4e39ede4853e0d352e55aeddbd481b39948 (patch) | |
tree | 982648ce860ac1c50233df806798a8b9412819fe /src/render/Instance.cpp | |
parent | 7bd12f4a48e081fb96c4d65d47eb3954afc13f60 (diff) |
More refs removed
Diffstat (limited to 'src/render/Instance.cpp')
-rw-r--r-- | src/render/Instance.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/render/Instance.cpp b/src/render/Instance.cpp new file mode 100644 index 00000000..775341be --- /dev/null +++ b/src/render/Instance.cpp @@ -0,0 +1,20 @@ +#include "common.h" +#include "patcher.h" +#include "Instance.h" + +void +CInstance::Shutdown() +{ + GetMatrix().Detach(); +} + +class CInstance_ : public CInstance +{ +public: + void dtor() { CInstance::~CInstance(); } +}; + +STARTPATCHES + InjectHook(0x50BE90, &CInstance_::dtor, PATCH_JUMP); + InjectHook(0x50B850, &CInstance::Shutdown, PATCH_JUMP); +ENDPATCHES |