diff options
| -rw-r--r-- | engines/queen/music.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/queen/music.cpp b/engines/queen/music.cpp index e04527d42a..df5ff029f0 100644 --- a/engines/queen/music.cpp +++ b/engines/queen/music.cpp @@ -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;  	} | 
