[Scummvm-cvs-logs] SF.net SVN: scummvm:[52253] scummvm/trunk/engines/sci/engine/ static_selectors.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Aug 21 13:03:10 CEST 2010


Revision: 52253
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52253&view=rev
Author:   thebluegr
Date:     2010-08-21 11:03:09 +0000 (Sat, 21 Aug 2010)

Log Message:
-----------
SCI added the "init" selector to the list of static selectors of LB2 floppy (which has no selector vocabulary), so that the workarounds of the CD version match with the ones from the floppy version

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/static_selectors.cpp

Modified: scummvm/trunk/engines/sci/engine/static_selectors.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/static_selectors.cpp	2010-08-21 10:46:35 UTC (rev 52252)
+++ scummvm/trunk/engines/sci/engine/static_selectors.cpp	2010-08-21 11:03:09 UTC (rev 52253)
@@ -177,10 +177,11 @@
 			names[110] = "init";
 		} else if (g_sci->getGameId() == GID_LAURABOW2) {
 			// The floppy of version needs the open and changeState selectors set to match up with the
-			// CD version's workarounds - bugs #3035694 and #3036291
+			// CD version's workarounds - bugs #3035694, #3036291 and #3041257
 			if (names.size() < 190)
 				names.resize(190);
 
+			names[110] = "init";
 			names[144] = "changeState";
 			names[189] = "open";
 		}


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