diff options
author | Torbjörn Andersson | 2010-07-16 03:32:59 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-07-16 03:32:59 +0000 |
commit | ae1afee564070234afc0a1b4fca619b3231d4e57 (patch) | |
tree | 64f4898456c4d97c548bf5d62f6063bce796f147 /engines/saga | |
parent | b4459fe92338d1d83cac909519174456402d716e (diff) | |
download | scummvm-rg350-ae1afee564070234afc0a1b4fca619b3231d4e57.tar.gz scummvm-rg350-ae1afee564070234afc0a1b4fca619b3231d4e57.tar.bz2 scummvm-rg350-ae1afee564070234afc0a1b4fca619b3231d4e57.zip |
The standalone MIDI files for one of the re-releases of Inherit the Earth are
General MIDI, not MT-32. (I hope this doesn't break anything else.)
svn-id: r50927
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/music.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/saga/music.cpp b/engines/saga/music.cpp index fcf27cc845..e4a16e27da 100644 --- a/engines/saga/music.cpp +++ b/engines/saga/music.cpp @@ -158,6 +158,8 @@ Music::Music(SagaEngine *vm, Audio::Mixer *mixer) : _vm(vm), _mixer(mixer) { _driver->setGM(_vm->getGameId() != GID_ITE); } else { _parser = MidiParser::createParser_SMF(); + // ITE with standalone MIDI files is General MIDI + _driver->setGM(_vm->getGameId() == GID_ITE); } free(resourceData); } |