mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
TOLTECS: Fix operator order (pre-decrement instead of post-decrement)
A typo in commit 98fa064. Thanks to LordHoto for pointing that out
This commit is contained in:
parent
98fa064edf
commit
247472624a
@ -129,7 +129,7 @@ void MoviePlayer::playMovie(uint resIndex) {
|
||||
unpackRle(chunkBuffer, _vm->_screen->_backScreen);
|
||||
_vm->_screen->_fullRefresh = true;
|
||||
|
||||
if (soundChunkFramesLeft-- <= _framesPerSoundChunk) {
|
||||
if (--soundChunkFramesLeft <= _framesPerSoundChunk) {
|
||||
fetchAudioChunks();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user