aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-09-20 11:48:00 -0400
committerMatthew Hoops2012-09-20 11:48:00 -0400
commitfc6ab89b504e15ea14208301acd727893d113381 (patch)
tree1fbd064e2f69b175d0f25ed31c9a149312d7f4a5 /engines/scumm/scumm.cpp
parent4522d182d44134d48ed0de86863f21a128f5f593 (diff)
downloadscummvm-rg350-fc6ab89b504e15ea14208301acd727893d113381.tar.gz
scummvm-rg350-fc6ab89b504e15ea14208301acd727893d113381.tar.bz2
scummvm-rg350-fc6ab89b504e15ea14208301acd727893d113381.zip
SCUMM: Add support for Indy4 Mac 68k sound
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 7b37517ac0..2150bbc4f1 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 (_game.platform == Common::kPlatformMacintosh && _game.id == GID_MONKEY2) {
+ if (isMacM68kV5()) {
// We setup this driver as native MIDI driver to avoid playback
// of the Mac music via a selected MIDI device.
nativeMidiDriver = new MacM68kDriver(_mixer);