SHERLOCK: Use standard MIDI driver for General MIDI in Rose Tattoo

Unlike Serrated Scalpel, Rose Tattoo's music sounds good as General
MIDI, and our standard driver should work well enough for that.
This commit is contained in:
Torbjörn Andersson 2015-06-28 22:47:21 +02:00
parent d5c1f8b8d6
commit 3c9bdaa04f

View File

@ -280,6 +280,9 @@ Music::Music(SherlockEngine *vm, Audio::Mixer *mixer) : _vm(vm), _mixer(mixer) {
if (ConfMan.getBool("native_mt32")) {
_midiDriver = Audio::MidiDriver_Miles_MT32_create("");
_musicType = MT_MT32;
} else {
_midiDriver = MidiDriver::createMidi(dev);
_musicType = MT_GM;
}
break;
default: