aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-10 20:42:56 +0000
committerJohannes Schickel2008-04-10 20:42:56 +0000
commit9f16b3f5f5f7ca9587f9533d98d1753e38eeb877 (patch)
tree7020bae0819d58b49637dd2092628e279735cdd1 /engines/kyra/sound.cpp
parent5f3bfc702c062cf7a918617a616947e55e005f7d (diff)
downloadscummvm-rg350-9f16b3f5f5f7ca9587f9533d98d1753e38eeb877.tar.gz
scummvm-rg350-9f16b3f5f5f7ca9587f9533d98d1753e38eeb877.tar.bz2
scummvm-rg350-9f16b3f5f5f7ca9587f9533d98d1753e38eeb877.zip
Fixed regression in Kyra1.
svn-id: r31474
Diffstat (limited to 'engines/kyra/sound.cpp')
-rw-r--r--engines/kyra/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound.cpp b/engines/kyra/sound.cpp
index 34c314f68d..694ea14404 100644
--- a/engines/kyra/sound.cpp
+++ b/engines/kyra/sound.cpp
@@ -287,7 +287,7 @@ void SoundMidiPC::send(uint32 b) {
} else if ((b & 0xFFF0) == 0x007BB0) {
//Only respond to All Notes Off if this channel
//has currently been allocated
- if (!_channel[_virChannel[channel]])
+ if (!_channel[/*_virChannel[channel]*/channel])
return;
}