diff options
| author | Max Horn | 2011-03-24 14:59:44 +0100 | 
|---|---|---|
| committer | Max Horn | 2011-03-24 16:46:45 +0100 | 
| commit | 00932cc71540350e64c1f3b3dd495d8425500865 (patch) | |
| tree | d01edd7edc2b2e7833774d2d19da13436b3e25d8 | |
| parent | 754c250c65ca746d7620d74928ce91af4e5ef228 (diff) | |
| download | scummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.tar.gz scummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.tar.bz2 scummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.zip | |
QUEEN: Fix incorrect 'all notes off' handling
| -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;  	} | 
