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

kirben at users.sourceforge.net kirben at users.sourceforge.net
Mon Mar 13 23:46:02 CET 2006


Revision: 21273
Author:   kirben
Date:     2006-03-13 23:45:46 -0800 (Mon, 13 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21273&view=rev

Log Message:
-----------
Fix regression in C64 zak, script 5 was not been run when room changed

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/room.cpp
Modified: scummvm/trunk/engines/scumm/room.cpp
===================================================================
--- scummvm/trunk/engines/scumm/room.cpp	2006-03-14 06:30:03 UTC (rev 21272)
+++ scummvm/trunk/engines/scumm/room.cpp	2006-03-14 07:45:46 UTC (rev 21273)
@@ -195,7 +195,7 @@
 
 	_egoPositioned = false;
 	runEntryScript();
-	if ((_game.version <= 2) && !(_game.platform == Common::kPlatformC64)) {
+	if ((_game.version <= 2) && !(_game.id == GID_MANIAC && _game.platform == Common::kPlatformC64)) {
 		runScript(5, 0, 0, 0);
 	} else if (_game.version >= 5 && _game.version <= 6) {
 		if (a && !_egoPositioned) {


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