mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 07:53:36 +00:00
QUEEN: Fix incorrect 'all notes off' handling
This commit is contained in:
parent
754c250c65
commit
00932cc715
@ -178,7 +178,7 @@ void MidiMusic::send(uint32 b) {
|
||||
} else if ((b & 0xFFF0) == 0x007BB0) {
|
||||
//Only respond to All Notes Off if this channel
|
||||
//has currently been allocated
|
||||
if (_channel[channel])
|
||||
if (!_channel[channel])
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user