[Scummvm-git-logs] scummvm master -> 33e7eccd04f2150687fc922c6a2644c2d03bb02b

tag2015 noreply at scummvm.org
Mon Oct 23 11:30:06 UTC 2023


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:
33e7eccd04 HPL1: Fix partial detection entry, cleanup indentation


Commit: 33e7eccd04f2150687fc922c6a2644c2d03bb02b
    https://github.com/scummvm/scummvm/commit/33e7eccd04f2150687fc922c6a2644c2d03bb02b
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2023-10-23T13:29:41+02:00

Commit Message:
HPL1: Fix partial detection entry, cleanup indentation

Changed paths:
    engines/hpl1/detection_tables.h


diff --git a/engines/hpl1/detection_tables.h b/engines/hpl1/detection_tables.h
index 2335ef82483..dad8e447ed0 100644
--- a/engines/hpl1/detection_tables.h
+++ b/engines/hpl1/detection_tables.h
@@ -23,10 +23,13 @@ namespace Hpl1 {
 
 const PlainGameDescriptor GAME_NAMES[] = {
 	{"penumbraoverture", "Penumbra: Overture"},
-	{0, 0}};
+	{"penumbrablackplague", "Penumbra: Black Plague"},
+	{0, 0}
+};
 
 const ADGameDescription GAME_DESCRIPTIONS[] = {
-	// Humble Indie Bundle #1 Release
+
+	// Penumbra: Overture (Humble Indie Bundle #1 Release)
 	{
 		"penumbraoverture",
 		nullptr,
@@ -34,8 +37,10 @@ const ADGameDescription GAME_DESCRIPTIONS[] = {
 		Common::Language::EN_ANY,
 		Common::Platform::kPlatformWindows,
 		ADGF_UNSTABLE,
-		GUIO0()},
-	// GOG release
+		GUIO0()
+	},
+
+	// Penumbra: Overture (GOG v1.0)
 	{
 		"penumbraoverture",
 		nullptr,
@@ -43,22 +48,33 @@ const ADGameDescription GAME_DESCRIPTIONS[] = {
 		Common::Language::EN_ANY,
 		Common::Platform::kPlatformWindows,
 		ADGF_UNSTABLE,
-		GUIO0()},
+		GUIO0()
+	},
+
 	// Penumbra: Overture (The Penumbra Collection)
-	{"penumbraoverture", nullptr,
-	 AD_ENTRY1s("Penumbra.exe", "202990aa064ae67a675e2b187384036a", 2736128),
-	 Common::Language::EN_ANY,
-	 Common::kPlatformWindows,
-	 ADGF_UNSTABLE,
-	 GUIO0()},
-	// Penumbra: Black Plague (GOG Galaxy version)
-	{"penumbrablackplague", nullptr,
-	 AD_ENTRY1s("Penumbra.exe", "a066f7284e063ac3e5d7409102b7a497", 2985984),
-	 Common::Language::EN_ANY,
-	 Common::kPlatformWindows,
-	 ADGF_UNSTABLE,
-	 GUIO0()},
+	// TRAC #14674
+	{
+		"penumbraoverture",
+		nullptr,
+		AD_ENTRY1s("Penumbra.exe", "202990aa064ae67a675e2b187384036a", 2736128),
+		Common::Language::EN_ANY,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
+
+	// Penumbra: Black Plague (GOG v1.0)
+	{
+		"penumbrablackplague",
+		nullptr,
+		AD_ENTRY1s("Penumbra.exe", "a066f7284e063ac3e5d7409102b7a497", 2985984),
+		Common::Language::EN_ANY,
+		Common::kPlatformWindows,
+		ADGF_UNSTABLE,
+		GUIO0()
+	},
 
-	AD_TABLE_END_MARKER};
+	AD_TABLE_END_MARKER
+};
 
 } // namespace Hpl1




More information about the Scummvm-git-logs mailing list