diff options
author | Matthew Hoops | 2012-09-20 11:58:04 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-09-20 11:58:04 -0400 |
commit | 2a9d98003e07890dc74694b62bd694d1fc8a19f3 (patch) | |
tree | 3a7f8f84f143d5059e903feb7101d5f07779030d /engines/scumm/imuse | |
parent | fc6ab89b504e15ea14208301acd727893d113381 (diff) | |
download | scummvm-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/imuse')
-rw-r--r-- | engines/scumm/imuse/imuse_part.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/imuse/imuse_part.cpp b/engines/scumm/imuse/imuse_part.cpp index bb319df784..9c720b76bf 100644 --- a/engines/scumm/imuse/imuse_part.cpp +++ b/engines/scumm/imuse/imuse_part.cpp @@ -372,7 +372,7 @@ void Part::set_instrument(uint b) { // We emulate this by introducing a special instrument, which sets // the instrument via sysEx_customInstrument. This seems to be // exclusively used for special sound effects like the "spit" sound. - if (g_scumm->isMacM68kV5()) { + if (g_scumm->isMacM68kIMuse()) { _instrument.macSfx(b); } else { _instrument.program((byte)b, _player->isMT32()); |