Fixing possible leaks in CModelInfo::ShutDown

This commit is contained in:
Sergeanur
2020-01-23 20:08:42 +02:00
parent 18f80a02fc
commit b06ad84768
3 changed files with 26 additions and 2 deletions

View File

@ -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