diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-03-06 17:28:59 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-06-24 20:34:28 +0200 |
commit | 618d689dff9a22d9385abf36f5e364b38273b7cf (patch) | |
tree | 9378d463e73933c90dcf90be93da7c9bac3dbeb1 /src/core/Streaming.cpp | |
parent | Fix quiet police scanner on OpenAL (diff) | |
download | re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar.gz re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar.bz2 re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar.lz re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar.xz re3-618d689dff9a22d9385abf36f5e364b38273b7cf.tar.zst re3-618d689dff9a22d9385abf36f5e364b38273b7cf.zip |
Diffstat (limited to 'src/core/Streaming.cpp')
-rw-r--r-- | src/core/Streaming.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/Streaming.cpp b/src/core/Streaming.cpp index ee286278..6d980e18 100644 --- a/src/core/Streaming.cpp +++ b/src/core/Streaming.cpp @@ -1873,8 +1873,7 @@ CStreaming::RemoveCurrentZonesModels(void) if (ms_currentPedGrp != -1) for (i = 0; i < NUMMODELSPERPEDGROUP; i++) { ms_bIsPedFromPedGroupLoaded[i] = false; - if (CPopulation::ms_pPedGroups[ms_currentPedGrp].models[i] != -1 && - CPopulation::ms_pPedGroups[ms_currentPedGrp].models[i] != MI_MALE01) { + if (CPopulation::ms_pPedGroups[ms_currentPedGrp].models[i] != -1) { SetModelIsDeletable(CPopulation::ms_pPedGroups[ms_currentPedGrp].models[i]); SetModelTxdIsDeletable(CPopulation::ms_pPedGroups[ms_currentPedGrp].models[i]); } |