[Scummvm-git-logs] scummvm master -> 959c0dd9ace6901f27b272d02fa528594cae6af0

bluegr noreply at scummvm.org
Tue Aug 20 17:08:04 UTC 2024


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:
959c0dd9ac MTROPOLIS: add Adobe 24 Hours Tools Sampler to detection


Commit: 959c0dd9ace6901f27b272d02fa528594cae6af0
    https://github.com/scummvm/scummvm/commit/959c0dd9ace6901f27b272d02fa528594cae6af0
Author: meekee7 (michael_kuerbis at web.de)
Date: 2024-08-20T20:08:01+03:00

Commit Message:
MTROPOLIS: add Adobe 24 Hours Tools Sampler to detection

Changed paths:
    engines/mtropolis/boot.cpp
    engines/mtropolis/detection.cpp
    engines/mtropolis/detection.h
    engines/mtropolis/detection_tables.h


diff --git a/engines/mtropolis/boot.cpp b/engines/mtropolis/boot.cpp
index 354fda2530b..b35ffa417d2 100644
--- a/engines/mtropolis/boot.cpp
+++ b/engines/mtropolis/boot.cpp
@@ -2057,6 +2057,11 @@ const Game games[] = {
 		MTBOOT_C9SAMPLER_WIN_EN,
 		&BootScriptContext::bootGeneric
 	},
+	// Adobe 24 Hours Tools Sampler - Windows - English
+	{
+		MTBOOT_ADOBE24_WIN_EN,
+		&BootScriptContext::bootGeneric
+	},
 };
 
 } // End of namespace Games
diff --git a/engines/mtropolis/detection.cpp b/engines/mtropolis/detection.cpp
index ffc31d8279d..680194aef5a 100644
--- a/engines/mtropolis/detection.cpp
+++ b/engines/mtropolis/detection.cpp
@@ -79,6 +79,7 @@ static const PlainGameDescriptor mTropolisGames[] = {
 	{"poser3_zygote", "Poser 3 Zygote Promo"},
 	{"wtextreme", "Whitetail Extreme"},
 	{"c9sampler", "Cloud 9 CD Sampler Volume 2"},
+	{"adobe24", "Adobe 24 Hours Tools Sampler"},
 
 
 	{"mtropolis", "mTropolis Title"},
diff --git a/engines/mtropolis/detection.h b/engines/mtropolis/detection.h
index 5a5de98b272..44ef32b6f65 100644
--- a/engines/mtropolis/detection.h
+++ b/engines/mtropolis/detection.h
@@ -82,6 +82,7 @@ enum MTropolisGameID {
 	GID_POSER3_ZYGOTE		= 49,
 	GID_WTEXTREME			= 50,
 	GID_C9SAMPLER			= 51,
+	GID_ADOBE24				= 52,
 
 	GID_GENERIC				= 99,
 };
@@ -187,6 +188,7 @@ enum MTropolisGameBootID {
 	MTBOOT_POSER3_ZYGOTE_WIN_EN,
 	MTBOOT_WT_EXTREME_WIN_EN,
 	MTBOOT_C9SAMPLER_WIN_EN,
+	MTBOOT_ADOBE24_WIN_EN,
 };
 
 enum MTGameFlag {
diff --git a/engines/mtropolis/detection_tables.h b/engines/mtropolis/detection_tables.h
index 5809bdab736..5511b1df732 100644
--- a/engines/mtropolis/detection_tables.h
+++ b/engines/mtropolis/detection_tables.h
@@ -2105,6 +2105,26 @@ static const MTropolisGameDescription gameDescriptions[] = {
 		MTBOOT_WT_EXTREME_WIN_EN,
 	},
 
+	{ // Adobe 24 Hours Tools Sampler (English, Windows)
+	  // Published by Against All Odds Productions, 1996
+		{
+			"adobe24",
+			MetaEngineDetection::GAME_NOT_IMPLEMENTED,
+			{
+				{ "ADOBE32.EXE", 0, "b5efd541d37b23ab6a587e0929b05c2e", 1218048 },
+				{ "DATA.MPL", 0, "e5d4f39ab5685556115ba0b34103bc2e", 27625660 },
+				AD_LISTEND
+			},
+			Common::EN_ANY,
+			Common::kPlatformWindows,
+			ADGF_UNSUPPORTED,
+			GUIO0()
+		},
+		GID_ADOBE24,
+		0,
+		MTBOOT_ADOBE24_WIN_EN,
+	},
+
 
 	{ AD_TABLE_END_MARKER, 0, 0, MTBOOT_INVALID }
 };




More information about the Scummvm-git-logs mailing list