QUEEN: Fix incorrect 'all notes off' handling

This commit is contained in:
Max Horn 2011-03-24 14:59:44 +01:00
parent 754c250c65
commit 00932cc715

View File

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