diff options
Diffstat (limited to 'src/core/Instance.cpp')
-rw-r--r-- | src/core/Instance.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/Instance.cpp b/src/core/Instance.cpp index 5426605f..775341be 100644 --- a/src/core/Instance.cpp +++ b/src/core/Instance.cpp @@ -2,6 +2,12 @@ #include "patcher.h" #include "Instance.h" +void +CInstance::Shutdown() +{ + GetMatrix().Detach(); +} + class CInstance_ : public CInstance { public: @@ -10,4 +16,5 @@ public: STARTPATCHES InjectHook(0x50BE90, &CInstance_::dtor, PATCH_JUMP); + InjectHook(0x50B850, &CInstance::Shutdown, PATCH_JUMP); ENDPATCHES |