aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-09-20 11:58:04 -0400
committerMatthew Hoops2012-09-20 11:58:04 -0400
commit2a9d98003e07890dc74694b62bd694d1fc8a19f3 (patch)
tree3a7f8f84f143d5059e903feb7101d5f07779030d /engines/scumm/scumm.cpp
parentfc6ab89b504e15ea14208301acd727893d113381 (diff)
downloadscummvm-rg350-2a9d98003e07890dc74694b62bd694d1fc8a19f3.tar.gz
scummvm-rg350-2a9d98003e07890dc74694b62bd694d1fc8a19f3.tar.bz2
scummvm-rg350-2a9d98003e07890dc74694b62bd694d1fc8a19f3.zip
SCUMM: Restrict the Mac m68k v5 driver to MI2/Indy4
Shouldn't be used with MI1
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index 2150bbc4f1..c9c9e991e4 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1839,7 +1839,7 @@ void ScummEngine::setupMusic(int midi) {
bool multi_midi = ConfMan.getBool("multi_midi") && _sound->_musicType != MDT_NONE && _sound->_musicType != MDT_PCSPK && (midi & MDT_ADLIB);
bool useOnlyNative = false;
- if (isMacM68kV5()) {
+ if (isMacM68kIMuse()) {
// We setup this driver as native MIDI driver to avoid playback
// of the Mac music via a selected MIDI device.
nativeMidiDriver = new MacM68kDriver(_mixer);