SCUMM: HE (Sound): Fix bug #14583

I forgot to initiate sound timers for spooled music below
HE version 80. Whoops!
This commit is contained in:
AndywinXp 2023-08-22 16:14:26 +02:00
parent 29f6f0b5b2
commit 9637828773

View File

@ -928,6 +928,8 @@ void SoundHE::triggerSpoolingSound(int song, int offset, int channel, int flags,
_heChannel[channel].sound = song;
_heChannel[channel].priority = 255;
_vm->setHETimer(channel + HSND_TIMER_SLOT);
_vm->VAR(_vm->VAR_ERROR_FLAG) = 0;
return;
}