[Scummvm-git-logs] scummvm master -> 43ca0f149b0e896dae07ee08a060a9f8774267e8

dreammaster dreammaster at scummvm.org
Wed Feb 10 04:20:01 UTC 2021


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

Summary:
58e7616aa9 AGS: Added TFG&MI detection
43ca0f149b AGS: Have fallback detection as kPlatformUnknown


Commit: 58e7616aa984c18dcb29010907931181cff669a0
    https://github.com/scummvm/scummvm/commit/58e7616aa984c18dcb29010907931181cff669a0
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-02-09T20:15:38-08:00

Commit Message:
AGS: Added TFG&MI detection

Changed paths:
    engines/ags/detection_tables.h


diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index 6cd5bf4c3c..6b39c8ba0e 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -1109,6 +1109,7 @@ const PlainGameDescriptor GAME_NAMES[] = {
 	{ "test", "Test" },
 	{ "test5", "test5" },
 	{ "textparsergame", "Text Parser Game" },
+	{ "tfg-mi", "The Fan Game - Ghostbusters and The Secret of Monkey Island" },
 	{ "thatday", "ThatDay" },
 	{ "the30minutewar", "The 30 Minute War" },
 	{ "the7thsense", "The 7th Sense" },
@@ -2438,6 +2439,7 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
 	ENGLISH_ENTRY("test", "Living Nightmare.exe", "95dcf736be87cf7d40bf64d5b078c4b7", 3356797),
 	ENGLISH_ENTRY("test5", "who07.exe", "465f972675db2da6040518221af5b0ba", 1889598),
 	ENGLISH_ENTRY("textparsergame", "tparsergame.exe", "06a03fe35791b0578068ab1873455463", 2061002),
+	ENGLISH_ENTRY("tfg-mi", "tfg-g&mi.exe", "7971a7c02d414dc8cb33b6ec36080b91", 251715672),
 	ENGLISH_ENTRY("thatday", "ThatDay.exe", "b142b43c146c25443a1d155d441a6a81", 9534366),
 	ENGLISH_ENTRY("the30minutewar", "7DG.exe", "3b7cceb3e4bdb031dc5d8f290936e94b", 1659319),
 	ENGLISH_ENTRY("the7thsense", "7thSense.exe", "3b7cceb3e4bdb031dc5d8f290936e94b", 17972183),


Commit: 43ca0f149b0e896dae07ee08a060a9f8774267e8
    https://github.com/scummvm/scummvm/commit/43ca0f149b0e896dae07ee08a060a9f8774267e8
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-02-09T20:18:50-08:00

Commit Message:
AGS: Have fallback detection as kPlatformUnknown

Changed paths:
    engines/ags/detection.cpp


diff --git a/engines/ags/detection.cpp b/engines/ags/detection.cpp
index efdcea7958..8e0c3a16ca 100644
--- a/engines/ags/detection.cpp
+++ b/engines/ags/detection.cpp
@@ -67,7 +67,7 @@ AGSMetaEngineDetection::AGSMetaEngineDetection() : AdvancedMetaEngineDetection(A
 ADDetectedGame AGSMetaEngineDetection::fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const {
 	// Set the default values for the fallback descriptor's ADGameDescription part.
 	AGS::g_fallbackDesc.desc.language = Common::UNK_LANG;
-	AGS::g_fallbackDesc.desc.platform = Common::kPlatformDOS;
+	AGS::g_fallbackDesc.desc.platform = Common::kPlatformUnknown;
 	AGS::g_fallbackDesc.desc.flags = ADGF_NO_FLAGS;
 
 	// FIXME: Hack to return match without checking for game data,




More information about the Scummvm-git-logs mailing list