diff options
author | Kirben | 2014-06-29 23:36:11 +1000 |
---|---|---|
committer | Kirben | 2014-06-29 23:36:11 +1000 |
commit | cc1a570f96660e40c653a569e298ea729703f09e (patch) | |
tree | 7a8f8fce68955364f0deca3acd6978e9ea7ae446 /engines | |
parent | dd7b6f9c80ceb5964456ab08e0f9f0b9ddc585f1 (diff) | |
download | scummvm-rg350-cc1a570f96660e40c653a569e298ea729703f09e.tar.gz scummvm-rg350-cc1a570f96660e40c653a569e298ea729703f09e.tar.bz2 scummvm-rg350-cc1a570f96660e40c653a569e298ea729703f09e.zip |
AGOS: Revert my MIDI changes that caused bug #6664.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/midi.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/agos/midi.cpp b/engines/agos/midi.cpp index 392ee08ea1..c26fbe3331 100644 --- a/engines/agos/midi.cpp +++ b/engines/agos/midi.cpp @@ -235,10 +235,6 @@ void MidiPlayer::startTrack(int track) { _music.parser = parser; // That plugs the power cord into the wall } else if (_music.parser) { if (!_music.parser->setTrack(track)) { - // The Roland MT32 music in Simon the Sorcerer 2 - // is missing the extra tracks in many scenes, - // like the introduction sequence. - stop(); return; } _currentTrack = (byte)track; |