mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2025-01-11 04:04:10 +00:00
Fix max iterator value in InitialisePoliceRadio
This commit is contained in:
parent
0df15bb73d
commit
de09fc0225
|
@ -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