aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound
diff options
context:
space:
mode:
authorFlorian Kagerer2010-06-25 20:58:52 +0000
committerFlorian Kagerer2010-06-25 20:58:52 +0000
commite1a333570eb127fd9d16c1272cc9772d6f6b9559 (patch)
treed69462babac1c80e016ea85ec8b417b087d673ca /engines/sci/sound
parentc35e3505319977e56d1c413b39133dfedf6c1105 (diff)
downloadscummvm-rg350-e1a333570eb127fd9d16c1272cc9772d6f6b9559.tar.gz
scummvm-rg350-e1a333570eb127fd9d16c1272cc9772d6f6b9559.tar.bz2
scummvm-rg350-e1a333570eb127fd9d16c1272cc9772d6f6b9559.zip
SCI: set MDT_PREFER_GM instead od MDT_PREFER_MT32
svn-id: r50289
Diffstat (limited to 'engines/sci/sound')
-rw-r--r--engines/sci/sound/music.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index 400189ee2e..32f1869e33 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -68,7 +68,7 @@ void SciMusic::init() {
// We also don't yet support the 7.pat file of SCI1+ Mac games or SCI0 Mac patches, so we
// default to MIDI in those games to let them run.
Common::Platform platform = g_sci->getPlatform();
- uint32 dev = MidiDriver::detectDevice((getSciVersion() >= SCI_VERSION_2 || platform == Common::kPlatformMacintosh || (platform == Common::kPlatformAmiga && getSciVersion() >= SCI_VERSION_1_EGA)) ? (MDT_PCSPK | MDT_ADLIB | MDT_MIDI | MDT_PREFER_MT32) : (MDT_PCSPK | MDT_ADLIB | MDT_MIDI));
+ uint32 dev = MidiDriver::detectDevice((getSciVersion() >= SCI_VERSION_2 || platform == Common::kPlatformMacintosh || (platform == Common::kPlatformAmiga && getSciVersion() >= SCI_VERSION_1_EGA)) ? (MDT_PCSPK | MDT_ADLIB | MDT_MIDI | MDT_PREFER_GM) : (MDT_PCSPK | MDT_ADLIB | MDT_MIDI));
switch (MidiDriver::getMusicType(dev)) {
case MT_ADLIB: