diff options
| author | Martin Kiewitz | 2010-06-28 22:26:28 +0000 | 
|---|---|---|
| committer | Martin Kiewitz | 2010-06-28 22:26:28 +0000 | 
| commit | 15f9f37d4d15e8c8972fa0ecdbbdaf138ea2a8da (patch) | |
| tree | c4e19ce6fe51fe58c99a73f8b2e09057f9f223f8 | |
| parent | 668d820afd77ed8efd309f1d380005ab828f9cb8 (diff) | |
| download | scummvm-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
| -rw-r--r-- | engines/sci/sound/midiparser_sci.cpp | 11 | 
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; | 
