[Scummvm-git-logs] scummvm master -> 98869a0e5c42734a16a43e07e58a586c1e261a74

sev- sev at scummvm.org
Sun Apr 18 23:34:37 UTC 2021


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

Summary:
151a8932fd MOHAWK: Added Spanish "rugats" detection. Bugreport #12389
94614ea6f9 PRIVATE: Added German version detection. Bugreport #12360
98869a0e5c QUEEN: Added detection for alternative Amiga floppy version. Bugreport #12313


Commit: 151a8932fdb01da2eaae2c799b85bc89798ddf6a
    https://github.com/scummvm/scummvm/commit/151a8932fdb01da2eaae2c799b85bc89798ddf6a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-19T01:18:47+02:00

Commit Message:
MOHAWK: Added Spanish "rugats" detection. Bugreport #12389

Changed paths:
    engines/mohawk/detection_tables.h


diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h
index 238e75e914..01072dd02f 100644
--- a/engines/mohawk/detection_tables.h
+++ b/engines/mohawk/detection_tables.h
@@ -2304,6 +2304,24 @@ static const MohawkGameDescription gameDescriptions[] = {
 		0
 	},
 
+	// Rugrats Adventure Game
+	// Spanish Windows
+	// Reported in #12389
+	{
+		{
+			"rugrats",
+			"",
+			AD_ENTRY1s("outline", "a8f4ec8e88b028c2452c1aa84b1a9c51", 6546),
+			Common::ES_ESP,
+			Common::kPlatformWindows,
+			ADGF_UNSTABLE,
+			GUIO1(GUIO_NOASPECT)
+		},
+		GType_LIVINGBOOKSV4,
+		0,
+		0
+	},
+
 	// Rugrats Adventure Game
 	// English Windows Demo
 	// From GeorgeQGreg (Rugrats Movie Soundtrack)


Commit: 94614ea6f9829ddd1fbae74e446e7ab9081c394b
    https://github.com/scummvm/scummvm/commit/94614ea6f9829ddd1fbae74e446e7ab9081c394b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-19T01:18:47+02:00

Commit Message:
PRIVATE: Added German version detection. Bugreport #12360

Changed paths:
    engines/private/detection.cpp


diff --git a/engines/private/detection.cpp b/engines/private/detection.cpp
index 899cc6c818..8af66e8c4b 100644
--- a/engines/private/detection.cpp
+++ b/engines/private/detection.cpp
@@ -120,6 +120,16 @@ static const ADGameDescription gameDescriptions[] = {
 		ADGF_UNSUPPORTED,
 		GUIO1(GUIO_NOMIDI)
 	},
+	{
+		"private-eye", // EU release (DE)
+		"It uses different file format for the assest",
+		AD_ENTRY2s("pvteye.ex_", "5ca171c4e8d804c7277887277d049f03", 600576,
+		   "bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
+		Common::DE_DEU,
+		Common::kPlatformWindows,
+		ADGF_UNSUPPORTED,
+		GUIO1(GUIO_NOMIDI)
+	},
 	{
 		"private-eye", // Demo from the EU release
 		"Demo",


Commit: 98869a0e5c42734a16a43e07e58a586c1e261a74
    https://github.com/scummvm/scummvm/commit/98869a0e5c42734a16a43e07e58a586c1e261a74
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-19T01:30:45+02:00

Commit Message:
QUEEN: Added detection for alternative Amiga floppy version. Bugreport #12313

It requires somebody to create tables for queen.tbl. I believe that
we kind of lost that knowledge by this time.

Changed paths:
    engines/queen/detection.cpp


diff --git a/engines/queen/detection.cpp b/engines/queen/detection.cpp
index a596aeed6e..3879abe6dd 100644
--- a/engines/queen/detection.cpp
+++ b/engines/queen/detection.cpp
@@ -159,6 +159,21 @@ static const QueenGameDescription gameDescriptions[] = {
 		},
 	},
 
+	// Amiga Floppy - English. Bugreport #12313
+	// The game requires extraction of queen.tbl
+	{
+		{
+			"queen",
+			// I18N: The game requires special code which was not yet implemented
+			"Missing game code",
+			AD_ENTRY1s("queen.1", "b545c73010236dc022bad51c59120a75", 344575),
+			Common::EN_ANY,
+			Common::kPlatformAmiga,
+			ADGF_UNSUPPORTED,
+			GUIO1(GUIO_NOSPEECH)
+		},
+	},
+
 	// DOS Floppy - English
 	{
 		{




More information about the Scummvm-git-logs mailing list