diff options
author | erorcun <erayorcunus@gmail.com> | 2020-10-02 16:39:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 16:39:15 +0200 |
commit | 72f342245dcb876b974bf41cabeec4ccc6656159 (patch) | |
tree | 5ed235c96acbbbaa6bb01251be2553a6ca91246b /src/core/IniFile.cpp | |
parent | Mark audio code which is the same in re3 as done (diff) | |
parent | Merge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff) | |
download | re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar.gz re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar.bz2 re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar.lz re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar.xz re3-72f342245dcb876b974bf41cabeec4ccc6656159.tar.zst re3-72f342245dcb876b974bf41cabeec4ccc6656159.zip |
Diffstat (limited to 'src/core/IniFile.cpp')
-rw-r--r-- | src/core/IniFile.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/IniFile.cpp b/src/core/IniFile.cpp index df01b440..f7e2bfdd 100644 --- a/src/core/IniFile.cpp +++ b/src/core/IniFile.cpp @@ -7,8 +7,10 @@ #include "main.h" #include "Population.h" -float CIniFile::PedNumberMultiplier = 1.0f; -float CIniFile::CarNumberMultiplier = 1.0f; +// --MIAMI: file done + +float CIniFile::PedNumberMultiplier = 0.6f; +float CIniFile::CarNumberMultiplier = 0.6f; void CIniFile::LoadIniFile() { @@ -24,5 +26,6 @@ void CIniFile::LoadIniFile() CFileMgr::CloseFile(f); } CPopulation::MaxNumberOfPedsInUse = 25.0f * PedNumberMultiplier; + CPopulation::MaxNumberOfPedsInUseInterior = 40.0f * PedNumberMultiplier; CCarCtrl::MaxNumberOfCarsInUse = 12.0f * CarNumberMultiplier; }
\ No newline at end of file |