diff options
Diffstat (limited to 'engines/draci')
-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; } |