[Scummvm-cvs-logs] SF.net SVN: scummvm:[43802] scummvm/trunk/engines/scumm/script_v4.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sat Aug 29 16:20:27 CEST 2009


Revision: 43802
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43802&view=rev
Author:   Kirben
Date:     2009-08-29 14:20:27 +0000 (Sat, 29 Aug 2009)

Log Message:
-----------
Correct regression in V1 DOS version of Zak McKracken.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/script_v4.cpp

Modified: scummvm/trunk/engines/scumm/script_v4.cpp
===================================================================
--- scummvm/trunk/engines/scumm/script_v4.cpp	2009-08-29 14:08:19 UTC (rev 43801)
+++ scummvm/trunk/engines/scumm/script_v4.cpp	2009-08-29 14:20:27 UTC (rev 43802)
@@ -397,7 +397,7 @@
 	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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list