aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorathrxx2019-07-14 20:44:25 +0200
committerathrxx2019-07-14 21:45:29 +0200
commitd1b64aab0cd1477f6d56c9ced8b84886d66de4d8 (patch)
treefbc71e99196be0339d6e3229b612232109a99735 /engines/scumm/scumm.cpp
parent0899ecc98760bba79bccc2026bcfa44542d46d8f (diff)
downloadscummvm-rg350-d1b64aab0cd1477f6d56c9ced8b84886d66de4d8.tar.gz
scummvm-rg350-d1b64aab0cd1477f6d56c9ced8b84886d66de4d8.tar.bz2
scummvm-rg350-d1b64aab0cd1477f6d56c9ced8b84886d66de4d8.zip
SCUMM: (iMuse/Amiga) - improve accuracy
This fixes the issue that some rhythm instruments didn't receive correct notes. The changes have been limited to the Amiga versions.
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index f6e0f9ede6..64f45c1b98 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -2039,6 +2039,8 @@ void ScummEngine::setupMusic(int midi) {
}
if (_sound->_musicType == MDT_PCSPK)
_imuse->property(IMuse::PROP_PC_SPEAKER, 1);
+ if (_sound->_musicType == MDT_AMIGA)
+ _imuse->property(IMuse::PROP_AMIGA, 1);
}
}
}