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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Nov 17 16:03:00 CET 2010


Revision: 54295
          http://scummvm.svn.sourceforge.net/scummvm/?rev=54295&view=rev
Author:   thebluegr
Date:     2010-11-17 15:02:58 +0000 (Wed, 17 Nov 2010)

Log Message:
-----------
SCI1.1 and newer games always ignore move count. The "version" command works now in SCI3

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

Modified: scummvm/trunk/engines/sci/engine/features.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/features.cpp	2010-11-17 14:48:28 UTC (rev 54294)
+++ scummvm/trunk/engines/sci/engine/features.cpp	2010-11-17 15:02:58 UTC (rev 54295)
@@ -573,6 +573,9 @@
 		// SCI0/SCI01 games always increment move count
 		if (getSciVersion() <= SCI_VERSION_01) {
 			_moveCountType = kIncrementMoveCount;
+		} else if (getSciVersion() >= SCI_VERSION_1_1) {
+			// SCI1.1 and newer games always ignore move count
+			_moveCountType = kIgnoreMoveCount;
 		} else {
 			if (!autoDetectMoveCountType()) {
 				error("Move count autodetection failed");


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