summaryrefslogtreecommitdiffstats
path: root/src/core/Game.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-07-11 23:11:11 +0200
committererorcun <erorcunerorcun@hotmail.com.tr>2021-08-01 12:56:09 +0200
commit192190769db6faeafb32e951cf4db6e021ac833e (patch)
treedc0a6f4c23ac4afa7f065bc198c29253ad902b04 /src/core/Game.cpp
parentFix radio scroll when player controls disabled (diff)
downloadre3-192190769db6faeafb32e951cf4db6e021ac833e.tar
re3-192190769db6faeafb32e951cf4db6e021ac833e.tar.gz
re3-192190769db6faeafb32e951cf4db6e021ac833e.tar.bz2
re3-192190769db6faeafb32e951cf4db6e021ac833e.tar.lz
re3-192190769db6faeafb32e951cf4db6e021ac833e.tar.xz
re3-192190769db6faeafb32e951cf4db6e021ac833e.tar.zst
re3-192190769db6faeafb32e951cf4db6e021ac833e.zip
Diffstat (limited to 'src/core/Game.cpp')
-rw-r--r--src/core/Game.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/Game.cpp b/src/core/Game.cpp
index c5e5224d..bdee936f 100644
--- a/src/core/Game.cpp
+++ b/src/core/Game.cpp
@@ -373,7 +373,11 @@ bool CGame::Initialise(const char* datFile)
CPools::Initialise();
#ifndef GTA_PS2
- CIniFile::LoadIniFile();
+#ifdef PED_CAR_DENSITY_SLIDERS
+ // Load density values from gta3.ini only if our reVC.ini have them 0.6f
+ if (CIniFile::PedNumberMultiplier == 0.6f && CIniFile::CarNumberMultiplier == 0.6f)
+#endif
+ CIniFile::LoadIniFile();
#endif
#ifdef USE_TEXTURE_POOL
_TexturePoolsUnknown(false);