diff options
author | athrxx | 2011-06-03 22:09:25 +0200 |
---|---|---|
committer | athrxx | 2011-06-03 22:09:25 +0200 |
commit | 4a8b501a225c170868555d39d6939015f79493f9 (patch) | |
tree | b5c1696b19db4ca0d2b3138c49fd936a0d3b2120 /engines | |
parent | 85f7a01d2a229da7523d5b6e01359c564dd1d912 (diff) | |
download | scummvm-rg350-4a8b501a225c170868555d39d6939015f79493f9.tar.gz scummvm-rg350-4a8b501a225c170868555d39d6939015f79493f9.tar.bz2 scummvm-rg350-4a8b501a225c170868555d39d6939015f79493f9.zip |
SCUMM: fix typo (reported by Littleboy)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index c0c477a597..36caff452d 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1832,7 +1832,7 @@ void ScummEngine::setupMusic(int midi) { if (nativeMidiDriver != NULL && _native_mt32) nativeMidiDriver->property(MidiDriver::PROP_CHANNEL_MASK, 0x03FE); bool multi_midi = ConfMan.getBool("multi_midi") && _musicType != MDT_NONE && (midi & MDT_ADLIB); - if (_musicType == MDT_ADLIB || MDT_TOWNS || multi_midi) { + if (_musicType == MDT_ADLIB || _musicType == MDT_TOWNS || multi_midi) { adlibMidiDriver = MidiDriver::createMidi(MidiDriver::detectDevice(_musicType == MDT_TOWNS ? MDT_TOWNS : MDT_ADLIB)); adlibMidiDriver->property(MidiDriver::PROP_OLD_ADLIB, (_game.features & GF_SMALL_HEADER) ? 1 : 0); } |