diff options
author | Filippos Karapetis | 2009-03-12 18:15:51 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-03-12 18:15:51 +0000 |
commit | 99d1a5d67cc7698b200c226938be859b2e723732 (patch) | |
tree | 4a3a0484fff73e0a6a82e0290041a260063058ea | |
parent | 70673ad2d91670f844bf701ba7f2face8068b57d (diff) | |
download | scummvm-rg350-99d1a5d67cc7698b200c226938be859b2e723732.tar.gz scummvm-rg350-99d1a5d67cc7698b200c226938be859b2e723732.tar.bz2 scummvm-rg350-99d1a5d67cc7698b200c226938be859b2e723732.zip |
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)
svn-id: r39362
-rw-r--r-- | engines/sci/detection.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index 8290489a15..86b72d351f 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -1462,7 +1462,6 @@ static const struct SciGameDescription SciGameDescriptions[] = { SCI_VERSION(3, 000, 000) }, -#if 0 // Larry 7 - German DOS (from Tobis87) {{"lsl7", "", { {"resmap.000", 0, "c11e6bfcfc2f2d05da47e5a7df3e9b1a", 8188}, @@ -1470,9 +1469,8 @@ static const struct SciGameDescription SciGameDescriptions[] = { {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 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const Common::FSList &fsl 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()) |