[Scummvm-git-logs] scummvm master -> 06dae211468443f70fae5c34ace4e23608a59b45

sev- sev at scummvm.org
Wed Apr 21 15:25:49 UTC 2021


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:
06dae21146 MOHAWK: Added detection for unsupported "Dr Seuss Preschool". Bugreport #11184


Commit: 06dae211468443f70fae5c34ace4e23608a59b45
    https://github.com/scummvm/scummvm/commit/06dae211468443f70fae5c34ace4e23608a59b45
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-21T17:25:34+02:00

Commit Message:
MOHAWK: Added detection for unsupported "Dr Seuss Preschool". Bugreport #11184

Changed paths:
    engines/mohawk/POTFILES
    engines/mohawk/detection.cpp
    engines/mohawk/detection_tables.h


diff --git a/engines/mohawk/POTFILES b/engines/mohawk/POTFILES
index a9216b14ef..492b2e0ce1 100644
--- a/engines/mohawk/POTFILES
+++ b/engines/mohawk/POTFILES
@@ -1,3 +1,4 @@
+engines/mohawk/detection_tables.h
 engines/mohawk/detection.cpp
 engines/mohawk/dialogs.cpp
 engines/mohawk/metaengine.cpp
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp
index dfa0ff247d..2c25138083 100644
--- a/engines/mohawk/detection.cpp
+++ b/engines/mohawk/detection.cpp
@@ -43,6 +43,7 @@ static const PlainGameDescriptor mohawkGames[] = {
 	{"maggiesfa", "Maggie's Farmyard Adventure"},
 	{"greeneggs", "Green Eggs and Ham"},
 	{"seussabc", "Dr Seuss's ABC"},
+	{"seussps", "Dr Seuss's Preschool"},
 	{"tortoise", "Aesop's Fables: The Tortoise and the Hare"},
 	{"arthur", "Arthur's Teacher Trouble"},
 	{"grandma", "Just Grandma and Me"},
diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h
index 3fa7db8c42..755a8afbf5 100644
--- a/engines/mohawk/detection_tables.h
+++ b/engines/mohawk/detection_tables.h
@@ -1006,6 +1006,36 @@ static const MohawkGameDescription gameDescriptions[] = {
 		0
 	},
 
+	{ // Version 1.0, built on unsupported LivingBooks version
+		{
+			"seussps",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1s("SEUSS_PS.CFG", "627afcfa170460f0e2b7ed4fa734361c", 1439),
+			Common::EN_ANY,
+			Common::kPlatformWindows,
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV2, // Most probably it is incorrect
+		0,
+		0
+	},
+
+	{ // Bugreport #11184, version 2.0
+		{
+			"seussps",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1("SEUSS_PS.CFG", "a2fc5596e6f1511d17acbc687e27a4ac"),
+			Common::EN_ANY,
+			Common::kPlatformWindows,
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV2, // Most probably it is incorrect
+		0,
+		0
+	},
+
 	{
 		{
 			"tortoise",




More information about the Scummvm-git-logs mailing list