aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2010-08-11 18:54:56 +0000
committerFlorian Kagerer2010-08-11 18:54:56 +0000
commit4a159bcb1e086d03c7bd1216694552ed5a83103e (patch)
treedf4c767bf3911bbb7ffa6dabbdea7a3a2220235e /engines/scumm/scumm.cpp
parent0c7932cc7cd54ea8fdee9d12663657d67eaa7639 (diff)
downloadscummvm-rg350-4a159bcb1e086d03c7bd1216694552ed5a83103e.tar.gz
scummvm-rg350-4a159bcb1e086d03c7bd1216694552ed5a83103e.tar.bz2
scummvm-rg350-4a159bcb1e086d03c7bd1216694552ed5a83103e.zip
GUI: add music devices for c64, amiga and apple II gs
These devices are not able to create appropriate drivers. The only purpose for now is having proper gui options and flags and music types for the device detector. The corresponding GUIO flags for the new devices have been added, too. svn-id: r51995
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index d72306abc3..6e3815d314 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1663,6 +1663,12 @@ void ScummEngine::setupMusic(int midi) {
case MT_ADLIB:
_musicType = MDT_ADLIB;
break;
+ case MT_C64:
+ _musicType = MDT_C64;
+ break;
+ case MT_APPLEIIGS:
+ _musicType = MDT_APPLEIIGS;
+ break;
default:
_musicType = MDT_MIDI;
break;