mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:29:00 +00:00
Fix max iterator value in InitialisePoliceRadio
This commit is contained in:
parent
0df15bb73d
commit
de09fc0225
1 changed files with 1 additions and 1 deletions
|
@ -2602,7 +2602,7 @@ cAudioManager::InitialisePoliceRadio()
|
|||
|
||||
SampleManager.SetChannelReverbFlag(policeChannel, 0);
|
||||
gSpecialSuspectLastSeenReport = 0;
|
||||
for(int32 i = 0; i < 18; i++) { gMinTimeToNextReport[i] = m_nTimeOfRecentCrime; }
|
||||
for(int32 i = 0; i < 17; i++) { gMinTimeToNextReport[i] = m_nTimeOfRecentCrime; }
|
||||
}
|
||||
|
||||
struct tPoliceRadioZone {
|
||||
|
|
Loading…
Reference in a new issue