aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2010-04-04 09:36:10 +0000
committerTravis Howell2010-04-04 09:36:10 +0000
commit753a73be293c4e1a768fe87545ea72606c93b32e (patch)
treec4cf3c1bcd9aff2d19307c30e093414588159b3d /engines/scumm/scumm.cpp
parente4f588ae4cd666588a9055066304a67821daa005 (diff)
downloadscummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.tar.gz
scummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.tar.bz2
scummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.zip
Fix bug #2960022 - PUTTPUTT 1: No Load/Save possible.
svn-id: r48499
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index a9322ebaa4..5555d961b2 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1733,9 +1733,9 @@ void ScummEngine::setupMusic(int midi) {
_musicEngine = new Player_V2(this, _mixer, midiDriver != MD_PCSPK);
} else if (_musicType == MDT_CMS) {
_musicEngine = new Player_V2CMS(this, _mixer);
- } else if (_game.platform == Common::kPlatform3DO && _game.heversion == 61) {
+ } else if (_game.platform == Common::kPlatform3DO && _game.heversion <= 62) {
// 3DO versions use digital music and sound samples.
- } else if (_game.version >= 3 && _game.heversion <= 61) {
+ } else if (_game.version >= 3 && _game.heversion <= 62) {
MidiDriver *nativeMidiDriver = 0;
MidiDriver *adlibMidiDriver = 0;
@@ -2234,7 +2234,7 @@ void ScummEngine_v5::scummLoop_handleActors() {
}
void ScummEngine::scummLoop_handleEffects() {
- if (_game.version >= 4 && _game.heversion <= 61)
+ if (_game.version >= 4 && _game.heversion <= 62)
cyclePalette();
palManipulate();
if (_doEffect) {