From 2d4dff8cb46dbe249e5e7918aa50f6adfc5cf6ea Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 24 Mar 2011 14:59:52 +0100 Subject: DRACI: Fix incorrect 'all notes off' handling --- engines/draci/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3