Fixed regression in Kyra1.

svn-id: r31474
This commit is contained in:
Johannes Schickel 2008-04-10 20:42:56 +00:00
parent 5f3bfc702c
commit 9f16b3f5f5

View file

@ -287,7 +287,7 @@ void SoundMidiPC::send(uint32 b) {
} else if ((b & 0xFFF0) == 0x007BB0) { } else if ((b & 0xFFF0) == 0x007BB0) {
//Only respond to All Notes Off if this channel //Only respond to All Notes Off if this channel
//has currently been allocated //has currently been allocated
if (!_channel[_virChannel[channel]]) if (!_channel[/*_virChannel[channel]*/channel])
return; return;
} }