[Scummvm-git-logs] scummvm master -> 21c06ed1e6bb4c633aca11535fe61195b35d54d5

bluegr noreply at scummvm.org
Tue Dec 6 07:46:34 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:
21c06ed1e6 MOHAWK: Add detection for Arthur's Reading Games and Dr. Seuss Reading Games


Commit: 21c06ed1e6bb4c633aca11535fe61195b35d54d5
    https://github.com/scummvm/scummvm/commit/21c06ed1e6bb4c633aca11535fe61195b35d54d5
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2022-12-06T09:46:31+02:00

Commit Message:
MOHAWK: Add detection for Arthur's Reading Games and Dr. Seuss Reading Games

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


diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp
index caffab23c2f..ef43ac7ebb9 100644
--- a/engines/mohawk/detection.cpp
+++ b/engines/mohawk/detection.cpp
@@ -72,6 +72,8 @@ static const PlainGameDescriptor mohawkGames[] = {
 	{"stellaluna", "Stellaluna"},
 	{"sheila", "Sheila Rae, the Brave"},
 	{"rugratsps", "Rugrats Print Shop" },
+	{"drseussreading", "Dr. Seuss Reading Games"},
+	{"arthurreading", "Arthur's Reading Games"},
 	{"wsg", "Williams-Sonoma Guide to Good Cooking" },
 	{nullptr, nullptr}
 };
diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h
index f3f53df2287..470384a68ad 100644
--- a/engines/mohawk/detection_tables.h
+++ b/engines/mohawk/detection_tables.h
@@ -2467,6 +2467,40 @@ static const MohawkGameDescription gameDescriptions[] = {
 		0
 	},
 
+	// Arthur's Reading Games
+	// Rerelease of Arthur's Reading Race
+	// There is also ARG.LB ("82baf9c67d417bc3278c79018d1617d4", 3353)
+	// Only differences are the copyright is for "The Learning Company" and some lines are accidentally merged
+	{
+		{
+			"arthurreading",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1s("ARG32.LB", "51be80dff4be9fd07c32b3b207320677", 3355),
+			Common::EN_ANY,
+			Common::kPlatformWindows,
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV3,
+		0,
+		0,
+	},
+
+	{
+		{
+			"arthurreading",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1s("Bookoutline", "394e06287031512c8487b0940abe1049", 3166),
+			Common::EN_ANY,
+			Common::kPlatformMacintosh,
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV3,
+		0,
+		0,
+	},
+
 	// From zerep in bug #5647
 	{
 		{
@@ -3520,6 +3554,23 @@ static const MohawkGameDescription gameDescriptions[] = {
 		0,
 	},
 
+	// Dr. Seuss Reading Games
+	// Contains "Dr. Seuss's ABC" and "The Cat in the Hat"
+	{
+		{
+			"drseussreading",
+			_s("Missing game code"), // Reason for being unsupported
+			AD_ENTRY1s("Outline", "1f522d42174e8e98537db10bc715aa97", 5330),
+			Common::EN_ANY,
+			Common::kPlatformUnknown, // identical on both Win and Mac partitions of disc
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV3,
+		0,
+		0,
+	},
+
 	{
 		{
 			"wsg",




More information about the Scummvm-git-logs mailing list