aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2010-07-14 17:04:53 +0000
committerMatthew Hoops2010-07-14 17:04:53 +0000
commit6c22d599ecf84c9d3a7fbce9203ab67b3974e465 (patch)
treea58b7b0fdc210c8177033a31ec532533bf6217e9 /engines
parentf98fa72ef38ed2fd0239d59bda07acdb33b831c8 (diff)
downloadscummvm-rg350-6c22d599ecf84c9d3a7fbce9203ab67b3974e465.tar.gz
scummvm-rg350-6c22d599ecf84c9d3a7fbce9203ab67b3974e465.tar.bz2
scummvm-rg350-6c22d599ecf84c9d3a7fbce9203ab67b3974e465.zip
Fix non-PCSPK sound types in AGI.
svn-id: r50891
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/agi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/agi.cpp b/engines/agi/agi.cpp
index 4a994b731a..ce8b5931af 100644
--- a/engines/agi/agi.cpp
+++ b/engines/agi/agi.cpp
@@ -580,7 +580,7 @@ void AgiEngine::initialize() {
} else if (getPlatform() == Common::kPlatformCoCo3) {
_soundemu = SOUND_EMU_COCO3;
} else {
- switch (MidiDriver::getMusicType(MidiDriver::detectDevice(MDT_PCSPK))) {
+ switch (MidiDriver::getMusicType(MidiDriver::detectDevice(MDT_PCSPK|MDT_ADLIB|MDT_PCJR|MDT_MIDI))) {
case MT_PCSPK:
_soundemu = SOUND_EMU_PC;
break;