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