aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse.cpp
diff options
context:
space:
mode:
authorMax Horn2002-10-21 12:47:06 +0000
committerMax Horn2002-10-21 12:47:06 +0000
commitd4558a5d3b207fe4b6de7839eabcc2895119c63f (patch)
treedbc5590040b4c93e625a30428b0a9a06cd2a0a70 /scumm/imuse.cpp
parent6f1da52a64464a1e5d0b06e308c29f266e98e8b2 (diff)
downloadscummvm-rg350-d4558a5d3b207fe4b6de7839eabcc2895119c63f.tar.gz
scummvm-rg350-d4558a5d3b207fe4b6de7839eabcc2895119c63f.tar.bz2
scummvm-rg350-d4558a5d3b207fe4b6de7839eabcc2895119c63f.zip
oops forgot this file
svn-id: r5213
Diffstat (limited to 'scumm/imuse.cpp')
-rw-r--r--scumm/imuse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp
index 3ac9ff26a6..e26beeeb78 100644
--- a/scumm/imuse.cpp
+++ b/scumm/imuse.cpp
@@ -4550,7 +4550,7 @@ void IMuseGM::midiPitchBend(byte chan, int16 pitchbend)
void IMuseGM::midiPitchBendFactor (byte chan, byte factor) {
if (_midi_pitchbend_factor_last[chan] != factor) {
_midi_pitchbend_factor_last[chan] = factor;
- _md->setPitchBendRange (factor); // For high-level semantic drivers (such as QTMA)
+ _md->setPitchBendRange (chan, factor); // For high-level semantic drivers (such as QTMA)
_md->send(( 0 << 16) | (101 << 8) | (0xB0 | chan));
_md->send(( 0 << 16) | (100 << 8) | (0xB0 | chan));
_md->send((factor << 16) | ( 6 << 8) | (0xB0 | chan));