mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
Fascination - Fix one wrong wait time
svn-id: r47826
This commit is contained in:
parent
2c25dab0e7
commit
48c023cd5b
@ -697,7 +697,7 @@ void MDYPlayer::interpret() {
|
||||
if (_wait == 0xF8) {
|
||||
_wait = 0xF0;
|
||||
if (*_playPos != 0xF8)
|
||||
_wait += *(_playPos++);
|
||||
_wait += *(_playPos++) & 0x0F;
|
||||
}
|
||||
// _playPos++;
|
||||
_samplesTillPoll = _wait * (_rate / 1000);
|
||||
|
Loading…
Reference in New Issue
Block a user