diff options
author | Filippos Karapetis | 2010-01-29 18:30:19 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-01-29 18:30:19 +0000 |
commit | 31319de828b06dca82a7e878404663a5cb1fe4b4 (patch) | |
tree | f1f298ba985650999eac54ea7861bd4e5420e433 | |
parent | ddda7d12bde4ed88916fc077e049cf43394afa31 (diff) | |
download | scummvm-rg350-31319de828b06dca82a7e878404663a5cb1fe4b4.tar.gz scummvm-rg350-31319de828b06dca82a7e878404663a5cb1fe4b4.tar.bz2 scummvm-rg350-31319de828b06dca82a7e878404663a5cb1fe4b4.zip |
Always prefer MIDI drivers over the other ones
svn-id: r47677
-rw-r--r-- | engines/sci/sound/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp index 912b4da5e3..c2d2394e5c 100644 --- a/engines/sci/sound/music.cpp +++ b/engines/sci/sound/music.cpp @@ -61,7 +61,7 @@ void SciMusic::init() { // SCI sound init _dwTempo = 0; - MidiDriverType midiType = MidiDriver::detectMusicDriver(MDT_PCSPK | MDT_ADLIB | MDT_MIDI); + MidiDriverType midiType = MidiDriver::detectMusicDriver(MDT_PCSPK | MDT_ADLIB | MDT_MIDI | MDT_PREFER_MIDI); switch (midiType) { case MD_ADLIB: |