diff options
author | Travis Howell | 2009-08-29 14:20:27 +0000 |
---|---|---|
committer | Travis Howell | 2009-08-29 14:20:27 +0000 |
commit | e12d3c966a737551a092d450329c843a774256b9 (patch) | |
tree | 20939db5eb02c1dc60c1d527518939629a3962d5 /engines/scumm | |
parent | 1be7ab068e2bcda5aee5346dcd4b5515dc7b8146 (diff) | |
download | scummvm-rg350-e12d3c966a737551a092d450329c843a774256b9.tar.gz scummvm-rg350-e12d3c966a737551a092d450329c843a774256b9.tar.bz2 scummvm-rg350-e12d3c966a737551a092d450329c843a774256b9.zip |
Correct regression in V1 DOS version of Zak McKracken.
svn-id: r43802
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/script_v4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/script_v4.cpp b/engines/scumm/script_v4.cpp index ab647f72c6..01927b02e7 100644 --- a/engines/scumm/script_v4.cpp +++ b/engines/scumm/script_v4.cpp @@ -397,7 +397,7 @@ void ScummEngine_v4::o4_saveLoadGame() { byte a = getVarOrDirectByte(PARAM_1); byte result = 0; - if (_game.version <= 1) { + if ((_game.id == GID_MANIAC && _game.version <= 1) || (_game.id == GID_ZAK && _game.platform == Common::kPlatformC64)) { // Convert V0/V1 load/save screen (they support only one savegame per disk) // 1 Load // 2 Save |