[Scummvm-git-logs] scummvm master -> 69bf54a30d626783a339a70b115e86b7b87f5fb1

sev- noreply at scummvm.org
Thu Apr 16 16:40:16 UTC 2026


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

Summary:
69bf54a30d BOLT: Add detection entries for more Funhouse games


Commit: 69bf54a30d626783a339a70b115e86b7b87f5fb1
    https://github.com/scummvm/scummvm/commit/69bf54a30d626783a339a70b115e86b7b87f5fb1
Author: N.E.C. (beholdnec at gmail.com)
Date: 2026-04-16T18:40:11+02:00

Commit Message:
BOLT: Add detection entries for more Funhouse games

Changed paths:
    engines/bolt/detection.h
    engines/bolt/detection_tables.h


diff --git a/engines/bolt/detection.h b/engines/bolt/detection.h
index 8ce6d37c0bd..5ab6543c5f2 100644
--- a/engines/bolt/detection.h
+++ b/engines/bolt/detection.h
@@ -44,11 +44,11 @@ public:
 	}
 
 	const char *getEngineName() const override {
-		return "Cartoon Carnival";
+		return "BOLT";
 	}
 
 	const char *getOriginalCopyright() const override {
-		return "Hanna-Barbera's Cartoon Carnival (C) 1993-1995 Funhouse Design";
+		return "(C) 1993-1995 Philips Interactive Media";
 	}
 };
 
diff --git a/engines/bolt/detection_tables.h b/engines/bolt/detection_tables.h
index dbc3954fc2c..8f63ea6c341 100644
--- a/engines/bolt/detection_tables.h
+++ b/engines/bolt/detection_tables.h
@@ -23,6 +23,8 @@ namespace Bolt {
 
 const PlainGameDescriptor boltGames[] = {
 	{ "carnival", "Cartoon Carnival" },
+	{ "crete", "Labyrinth of Crete" },
+	{ "merlin", "Merlin's Apprentice" },
 	{ 0, 0 }
 };
 
@@ -66,6 +68,30 @@ const ADGameDescription gameDescriptions[] = {
 		ADGF_UNSTABLE | ADGF_DEMO,
 		GUIO1(GAMEOPTION_EXTEND_SCREEN)
 	},
+	
+	{
+		"crete",
+		 nullptr,
+		 AD_ENTRY1s("BOLTLIB.BLT", "65ca78c913539abe0db5c3e255c6727c", 11724174),
+		 Common::EN_ANY,
+		 // Games were released for Win and Mac on the same CD-ROM. There are no
+		 // notable differences between the Win and Mac versions.
+		 Common::kPlatformWindows,
+		 ADGF_UNSTABLE,
+		 GUIO0()
+	},
+
+	{
+		"merlin",
+		 nullptr,
+		 // FIXME: ScummVM will not detect BOLTLIB.BLT until you uncheck its
+		 // "Hidden" property with Explorer.
+		 AD_ENTRY1s("BOLTLIB.BLT", "58ef3e35e1f6369056272a30c67bb94d", 10452486),
+		 Common::EN_ANY,
+		 Common::kPlatformWindows,
+		 ADGF_UNSTABLE,
+		 GUIO0()
+	},
 
 	AD_TABLE_END_MARKER
 




More information about the Scummvm-git-logs mailing list