mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:48:59 +00:00
Fix R* optimization that prevents peds to spawn
This commit is contained in:
parent
192190769d
commit
418bf3ab69
1 changed files with 6 additions and 0 deletions
|
@ -903,7 +903,13 @@ void CGame::Process(void)
|
||||||
CEventList::Update();
|
CEventList::Update();
|
||||||
CParticle::Update();
|
CParticle::Update();
|
||||||
gFireManager.Update();
|
gFireManager.Update();
|
||||||
|
|
||||||
|
// Otherwise even on 30 fps most probably you won't see any peds around Ocean View Hospital
|
||||||
|
#if defined FIX_BUGS && !defined SQUEEZE_PERFORMANCE
|
||||||
|
if (processTime > 2) {
|
||||||
|
#else
|
||||||
if (processTime >= 2) {
|
if (processTime >= 2) {
|
||||||
|
#endif
|
||||||
CPopulation::Update(false);
|
CPopulation::Update(false);
|
||||||
} else {
|
} else {
|
||||||
uint32 startTime = CTimer::GetCurrentTimeInCycles() / CTimer::GetCyclesPerMillisecond();
|
uint32 startTime = CTimer::GetCurrentTimeInCycles() / CTimer::GetCyclesPerMillisecond();
|
||||||
|
|
Loading…
Reference in a new issue