summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-01-23 19:08:42 +0100
committerSergeanur <s.anureev@yandex.ua>2020-01-23 19:08:42 +0100
commitb06ad84768e314eb20327ec7ec8200da292dd55c (patch)
treede2377a69be92fa20ef791b10aef5a217be02588 /src/core
parentFixing some plane funcs declarations (diff)
downloadre3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar.gz
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar.bz2
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar.lz
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar.xz
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.tar.zst
re3-b06ad84768e314eb20327ec7ec8200da292dd55c.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Instance.cpp7
-rw-r--r--src/core/Instance.h1
2 files changed, 8 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
diff --git a/src/core/Instance.h b/src/core/Instance.h
index 4a7f9aa9..01dfb6a2 100644
--- a/src/core/Instance.h
+++ b/src/core/Instance.h
@@ -10,4 +10,5 @@ public:
int m_modelIndex;
public:
~CInstance() = default;
+ void Shutdown();
};