diff options
author | Max Horn | 2011-03-24 14:59:52 +0100 |
---|---|---|
committer | Max Horn | 2011-03-24 16:46:46 +0100 |
commit | 2d4dff8cb46dbe249e5e7918aa50f6adfc5cf6ea (patch) | |
tree | 905dcc3eb4c801c7721c062edb7ca2c78f81212a | |
parent | 00932cc71540350e64c1f3b3dd495d8425500865 (diff) | |
download | scummvm-rg350-2d4dff8cb46dbe249e5e7918aa50f6adfc5cf6ea.tar.gz scummvm-rg350-2d4dff8cb46dbe249e5e7918aa50f6adfc5cf6ea.tar.bz2 scummvm-rg350-2d4dff8cb46dbe249e5e7918aa50f6adfc5cf6ea.zip |
DRACI: Fix incorrect 'all notes off' handling
-rw-r--r-- | engines/draci/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/music.cpp b/engines/draci/music.cpp index cdea2d9fdd..7c31cc320a 100644 --- a/engines/draci/music.cpp +++ b/engines/draci/music.cpp @@ -117,7 +117,7 @@ void MusicPlayer::send(uint32 b) { else if ((b & 0xFFF0) == 0x007BB0) { //Only respond to All Notes Off if this channel //has currently been allocated - if (_channel[b & 0x0F]) + if (!_channel[b & 0x0F]) return; } |