diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/World.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/World.cpp b/src/core/World.cpp index 70388b38..844a4fb7 100644 --- a/src/core/World.cpp +++ b/src/core/World.cpp @@ -53,7 +53,7 @@ bool CWorld::bIncludeCarTyres; void CWorld::Initialise() { -#ifdef GTA_PS2 +#if GTA_VERSION <= GTA3_PS2_160 CPools::Initialise(); #endif pIgnoreEntity = nil; @@ -1791,6 +1791,9 @@ CWorld::ShutDown(void) } } ms_listMovingEntityPtrs.Flush(); +#if GTA_VERSION <= GTA3_PS2_160 + CPools::Shutdown(); +#endif } void |