Fascination - Fix one wrong wait time

svn-id: r47826
This commit is contained in:
Arnaud Boutonné 2010-02-02 23:33:10 +00:00
parent 2c25dab0e7
commit 48c023cd5b

View File

@ -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);