Pointless fixes

This commit is contained in:
erorcun 2021-02-28 17:18:48 +03:00 committed by Sergeanur
parent df1ad8e122
commit 8488dc791a
2 changed files with 4 additions and 5 deletions

View File

@ -945,10 +945,9 @@ CPopulation::MoveCarsAndPedsOutOfAbandonedZones()
void
CPopulation::ConvertAllObjectsToDummyObjects()
{
int poolSize = CPools::GetObjectPool()->GetSize();
for (int poolIndex = poolSize - 1; poolIndex >= 0; poolIndex--) {
CObject *obj = CPools::GetObjectPool()->GetSlot(poolIndex);
uint32 i = CPools::GetObjectPool()->GetSize();
while(i--) {
CObject *obj = CPools::GetObjectPool()->GetSlot(i);
if (obj) {
if (obj->CanBeDeleted())
ConvertToDummyObject(obj);

View File

@ -4050,7 +4050,7 @@ CAutomobile::GetHeightAboveRoad(void)
void
CAutomobile::PlayCarHorn(void)
{
int r;
uint32 r;
if(m_nCarHornTimer != 0)
return;