[Scummvm-cvs-logs] SF.net SVN: scummvm:[39362] scummvm/trunk/engines/sci/detection.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Thu Mar 12 19:15:51 CET 2009


Revision: 39362
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39362&view=rev
Author:   thebluegr
Date:     2009-03-12 18:15:51 +0000 (Thu, 12 Mar 2009)

Log Message:
-----------
Added the correct SCI version for German LSL7 from bug report #2662260. Also, added "sier" to the list of executable names (matches sier.exe, sierw.exe and sierw5.exe)

Modified Paths:
--------------
    scummvm/trunk/engines/sci/detection.cpp

Modified: scummvm/trunk/engines/sci/detection.cpp
===================================================================
--- scummvm/trunk/engines/sci/detection.cpp	2009-03-12 18:05:13 UTC (rev 39361)
+++ scummvm/trunk/engines/sci/detection.cpp	2009-03-12 18:15:51 UTC (rev 39362)
@@ -1462,7 +1462,6 @@
 		SCI_VERSION(3, 000, 000)
 	},
 
-#if 0
 	// Larry 7 - German DOS (from Tobis87)
 	{{"lsl7", "", {
 		{"resmap.000", 0, "c11e6bfcfc2f2d05da47e5a7df3e9b1a", 8188},
@@ -1470,9 +1469,8 @@
 		{NULL, 0, NULL, 0}}, Common::DE_DEU, Common::kPlatformPC, 0},
 		{},
 		SCI_VERSION_AUTODETECT,
-		SCI_VERSION(0, 000, 000)	// FIXME: add version here
+		SCI_VERSION(3, 000, 000)
 	},
-#endif
 
 #if 0
 	// Larry 7 - French DOS (provided by richiefs in bug report #2670691)
@@ -2503,9 +2501,10 @@
 			foundRes000 = true;
 
 		// Check if it's a known executable name
+		// Note: "sier" matches "sier.exe", "sierw.exe" and "sierw5.exe"
 		if (filename.contains("scidhuv") || filename.contains("sciv") ||
 			filename.contains("sierra") || filename.contains("sciw") ||
-			filename.contains("prog")) {
+			filename.contains("prog") || filename.contains("sier")) {
 
 			// We already found a valid exe, no need to check this one.
 			if (!exeVersionString.empty())


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