aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2010-06-15 10:55:31 +0000
committerEugene Sandulenko2010-06-15 10:55:31 +0000
commit2bcafcb02dd406a36fd0a11c6b0df742840a9a7e (patch)
treeae4fc66bab499a04df09d530b3a1c88639509328 /engines
parenteef983c2c6eec26c29d032818a838c563e0a0b98 (diff)
downloadscummvm-rg350-2bcafcb02dd406a36fd0a11c6b0df742840a9a7e.tar.gz
scummvm-rg350-2bcafcb02dd406a36fd0a11c6b0df742840a9a7e.tar.bz2
scummvm-rg350-2bcafcb02dd406a36fd0a11c6b0df742840a9a7e.zip
Sound: add PCJR as a pseudodriver.
Since AGI distinguishes between PCSPK and PCJR/Tandy, make it as a pseudodriver. svn-id: r49782
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 2f87d7b8ef..21b28fd445 100644
--- a/engines/agi/agi.cpp
+++ b/engines/agi/agi.cpp
@@ -583,7 +583,7 @@ void AgiEngine::initialize() {
} else if (getPlatform() == Common::kPlatformCoCo3) {
_soundemu = SOUND_EMU_COCO3;
} else {
- switch (MidiDriver::detectMusicDriver(MDT_PCSPK | MDT_ADLIB | MDT_MIDI)) {
+ switch (MidiDriver::detectMusicDriver(MDT_PCSPK | MDT_PCJR | MDT_ADLIB | MDT_MIDI)) {
case MD_PCSPK:
_soundemu = SOUND_EMU_PC;
break;