aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-28 22:26:28 +0000
committerMartin Kiewitz2010-06-28 22:26:28 +0000
commit15f9f37d4d15e8c8972fa0ecdbbdaf138ea2a8da (patch)
treec4e19ce6fe51fe58c99a73f8b2e09057f9f223f8 /engines/sci/sound
parent668d820afd77ed8efd309f1d380005ab828f9cb8 (diff)
downloadscummvm-rg350-15f9f37d4d15e8c8972fa0ecdbbdaf138ea2a8da.tar.gz
scummvm-rg350-15f9f37d4d15e8c8972fa0ecdbbdaf138ea2a8da.tar.bz2
scummvm-rg350-15f9f37d4d15e8c8972fa0ecdbbdaf138ea2a8da.zip
SCI: removing ignoring of channel volume change code from r50463, the lsl5 issue was actually caused by the old volume adjust code that was also causing the issues in gk1
svn-id: r50466
Diffstat (limited to 'engines/sci/sound')
-rw-r--r--engines/sci/sound/midiparser_sci.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/engines/sci/sound/midiparser_sci.cpp b/engines/sci/sound/midiparser_sci.cpp
index d6c0b2080f..cc09ba79f0 100644
--- a/engines/sci/sound/midiparser_sci.cpp
+++ b/engines/sci/sound/midiparser_sci.cpp
@@ -552,17 +552,6 @@ void MidiParser_SCI::parseNextEvent(EventInfo &info) {
break;
}
}
- switch (info.basic.param1) {
- case 7: // channel volume change
- if (!_position._play_tick) {
- // if this is tried on tick 0, ignore the command
- // this is needed for lsl5 sound resource 294, it sets channel volume to very low at the start
- // sierra sci ignores those
- parseNextEvent(_next_event);
- return;
- }
- break;
- }
info.length = 0;
break;