aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-03-09 13:17:05 +0000
committerTorbjörn Andersson2005-03-09 13:17:05 +0000
commiteb1c999ad07e0e3b478aa40bbe7fc61b4c0e7a83 (patch)
treec426c2269cf641c36f01f4754da3640b06f98904
parent61faa88b93044757f50e14ceab8e73956f6e89bd (diff)
downloadscummvm-rg350-eb1c999ad07e0e3b478aa40bbe7fc61b4c0e7a83.tar.gz
scummvm-rg350-eb1c999ad07e0e3b478aa40bbe7fc61b4c0e7a83.tar.bz2
scummvm-rg350-eb1c999ad07e0e3b478aa40bbe7fc61b4c0e7a83.zip
Use _chorus, not _effect_level, as parameter to chorusLevel(). I don't
know for sure that this is correct - the MIDI device I'm using at the moment doesn't seem to support chorus level - but the more I look at it the more sense it makes. And it might fix bug #1159734. ("DOTT/SAM: GM Instrument Chorus Level Improperly Set") svn-id: r17049
-rw-r--r--scumm/imuse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp
index 568314b020..33d70dc57e 100644
--- a/scumm/imuse.cpp
+++ b/scumm/imuse.cpp
@@ -1617,7 +1617,7 @@ void Part::sendAll() {
_mc->effectLevel(_effect_level);
if (_instrument.isValid())
_instrument.send(_mc);
- _mc->chorusLevel(_effect_level);
+ _mc->chorusLevel(_chorus);
_mc->priority(_pri_eff);
}