diff options
-rw-r--r-- | sky/music/gmchannel.cpp | 2 |
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); } |