aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2011-03-24 14:59:44 +0100
committerMax Horn2011-03-24 16:46:45 +0100
commit00932cc71540350e64c1f3b3dd495d8425500865 (patch)
treed01edd7edc2b2e7833774d2d19da13436b3e25d8 /engines
parent754c250c65ca746d7620d74928ce91af4e5ef228 (diff)
downloadscummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.tar.gz
scummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.tar.bz2
scummvm-rg350-00932cc71540350e64c1f3b3dd495d8425500865.zip
QUEEN: Fix incorrect 'all notes off' handling
Diffstat (limited to 'engines')
-rw-r--r--engines/queen/music.cpp2
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;
}