[Scummvm-git-logs] scummvm master -> aad30dbae2dc243cd22afc566ff12d4fe0307749

bluegr noreply at scummvm.org
Fri Jun 24 22:25:31 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
aad30dbae2 TOLTECS: Detect the (currently unsupported) 2019 remaster of 3 Skulls of the Toltecs


Commit: aad30dbae2dc243cd22afc566ff12d4fe0307749
    https://github.com/scummvm/scummvm/commit/aad30dbae2dc243cd22afc566ff12d4fe0307749
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-06-25T01:25:28+03:00

Commit Message:
TOLTECS: Detect the (currently unsupported) 2019 remaster of 3 Skulls of the Toltecs

Changed paths:
    engines/toltecs/detection.cpp


diff --git a/engines/toltecs/detection.cpp b/engines/toltecs/detection.cpp
index 3662ae096ea..a93957fa827 100644
--- a/engines/toltecs/detection.cpp
+++ b/engines/toltecs/detection.cpp
@@ -23,6 +23,7 @@
 
 #include "engines/advancedDetector.h"
 
+#include "common/config-manager.h"
 #include "common/translation.h"
 #include "common/savefile.h"
 #include "common/str-array.h"
@@ -203,6 +204,19 @@ static const ToltecsGameDescription gameDescriptions[] = {
 		},
 	},
 
+	{
+		// Fenimore Fillmore: 3 Skulls of the Toltecs, 2019 Casual Brothers remaster (GOG, Steam)
+		{
+			"toltecs",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1s("RData.lzma", "e0adae53ab5e821595a64032a4c2d5bc", 653477695),
+			Common::UNK_LANG,
+			Common::kPlatformWindows,
+			ADGF_REMASTERED | ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NONE)
+		}
+	},
+
 	{ AD_TABLE_END_MARKER }
 };
 
@@ -239,7 +253,10 @@ public:
 
 const ExtraGuiOptions ToltecsMetaEngineDetection::getExtraGuiOptions(const Common::String &target) const {
 	ExtraGuiOptions options;
-	options.push_back(toltecsExtraGuiOption);
+
+	if (target.empty() || ConfMan.get("platform", target) != "windows")
+		options.push_back(toltecsExtraGuiOption);
+
 	return options;
 }
 




More information about the Scummvm-git-logs mailing list