aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/saveload.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/saveload.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/saveload.cpp')
-rw-r--r--engines/scumm/saveload.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/engines/scumm/saveload.cpp b/engines/scumm/saveload.cpp
index 24fbf0949e..8d5a021461 100644
--- a/engines/scumm/saveload.cpp
+++ b/engines/scumm/saveload.cpp
@@ -87,7 +87,10 @@ bool ScummEngine::canLoadGameStateCurrently() {
// HE games are limited to original load and save interface only,
// due to numerous glitches (see bug #1726909) that can occur.
- if (_game.heversion >= 60)
+ //
+ // Except the earliest HE Games (3DO and initial DOS version of
+ // puttputt), which didn't offer scripted load/save screens.
+ if (_game.heversion >= 62)
return false;
// COMI always disables saving/loading (to tell the truth:
@@ -113,7 +116,10 @@ bool ScummEngine::canSaveGameStateCurrently() {
// HE games are limited to original load and save interface only,
// due to numerous glitches (see bug #1726909) that can occur.
- if (_game.heversion >= 60)
+ //
+ // Except the earliest HE Games (3DO and initial DOS version of
+ // puttputt), which didn't offer scripted load/save screens.
+ if (_game.heversion >= 62)
return false;
// COMI always disables saving/loading (to tell the truth: