diff options
author | TheOfficialFloW <theofficialflow1996@gmail.com> | 2021-01-03 14:37:47 +0100 |
---|---|---|
committer | shfil <filip.gawin@zoho.com> | 2021-01-03 14:59:16 +0100 |
commit | e46b06491c83dd41ee81f991ac6bdde08cd516ca (patch) | |
tree | 141dabc8576f1d060547f672c13b8c7276387ad2 /src | |
parent | fixed array size (diff) | |
download | re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar.gz re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar.bz2 re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar.lz re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar.xz re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.tar.zst re3-e46b06491c83dd41ee81f991ac6bdde08cd516ca.zip |
Diffstat (limited to '')
-rw-r--r-- | src/audio/AudioLogic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/AudioLogic.cpp b/src/audio/AudioLogic.cpp index 034e7a90..d3849e14 100644 --- a/src/audio/AudioLogic.cpp +++ b/src/audio/AudioLogic.cpp @@ -9922,7 +9922,7 @@ cAudioManager::ProcessMissionAudioSlot(uint8 slot) nCheckPlayingDelay[slot] = 0; nFramesUntilFailedLoad[slot] = 0; } else if (!m_nUserPause) { - if (++nFramesForPretendPlaying[slot] < 120) { + if (++nFramesForPretendPlaying[slot] < 90) { m_sMissionAudio.m_nPlayStatus[slot] = PLAY_STATUS_PLAYING; } else { m_sMissionAudio.m_nPlayStatus[slot] = PLAY_STATUS_FINISHED; |