aboutsummaryrefslogtreecommitdiff
path: root/sky/music
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-08-26 13:53:20 +0000
committerTorbjörn Andersson2004-08-26 13:53:20 +0000
commit35a0c52f4292c75bf4bbc98ac687d6d68a37630b (patch)
tree77317a36ee97870b4adc647a2997dcfd8da55326 /sky/music
parent13b59c1b42f545a6bf68299c07b2cfea247502ab (diff)
downloadscummvm-rg350-35a0c52f4292c75bf4bbc98ac687d6d68a37630b.tar.gz
scummvm-rg350-35a0c52f4292c75bf4bbc98ac687d6d68a37630b.tar.bz2
scummvm-rg350-35a0c52f4292c75bf4bbc98ac687d6d68a37630b.zip
Clarified the comment added in the previous commit slightly.
svn-id: r14776
Diffstat (limited to 'sky/music')
-rw-r--r--sky/music/gmchannel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/music/gmchannel.cpp b/sky/music/gmchannel.cpp
index 7aea34e572..47733b1484 100644
--- a/sky/music/gmchannel.cpp
+++ b/sky/music/gmchannel.cpp
@@ -61,7 +61,7 @@ void GmChannel::stopNote(void) {
// All Notes Off
_midiDrv->send((0xB0 | _channelData.midiChannelNumber) | 0x7B00 | 0 | 0x79000000);
- // Pitch Wheel
+ // Reset the Pitch Wheel. See bug #1016556.
_midiDrv->send((0xE0 | _channelData.midiChannelNumber) | 0x400000);
}