Mark audio code which is the same in re3 as done

This commit is contained in:
Filip Gawin
2020-09-30 18:14:50 +02:00
parent 0a58e3e430
commit 4ec5e44b68
2 changed files with 34 additions and 38 deletions

View File

@@ -725,7 +725,7 @@ cAudioManager::AgeCrimes()
{
for (uint8 i = 0; i < ARRAY_SIZE(m_sPoliceRadioQueue.crimes); i++) {
if (m_sPoliceRadioQueue.crimes[i].type != CRIME_NONE) {
if (++m_sPoliceRadioQueue.crimes[i].timer > 1500) m_sPoliceRadioQueue.crimes[i].type = CRIME_NONE;
if (++m_sPoliceRadioQueue.crimes[i].timer > 1200) m_sPoliceRadioQueue.crimes[i].type = CRIME_NONE;
}
}
}