[Scummvm-git-logs] scummvm master -> 53267cbad30b2456262cd3b9a79a69f3de331f8c
sev-
sev at scummvm.org
Sun May 23 19:19:56 UTC 2021
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b19f0173c9 DIRECTOR: Added detection for Macintosh II version of L-ZONE
53267cbad3 MOHAWK: Added detection for two Little Ark company games. Inspired by bug #12275
Commit: b19f0173c9e2377093d134a06148a6bca11f214e
https://github.com/scummvm/scummvm/commit/b19f0173c9e2377093d134a06148a6bca11f214e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-05-23T19:57:18+02:00
Commit Message:
DIRECTOR: Added detection for Macintosh II version of L-ZONE
Changed paths:
engines/director/detection_tables.h
diff --git a/engines/director/detection_tables.h b/engines/director/detection_tables.h
index daa8a47a8b..32cd7a8343 100644
--- a/engines/director/detection_tables.h
+++ b/engines/director/detection_tables.h
@@ -165,6 +165,7 @@ static const DirectorGameDescription gameDescriptions[] = {
MACGAME("kyoto", "v1.01", "Cosmology of KYOTO", "f5277c53bacd27936158dd3867e587e2", 392505, 300),
MACGAME("lzone", "", "L-ZONE", "f5277c53bacd27936158dd3867e587e2", 392484, 300),
+ MACGAME("lzone", "MacintoshII", "L-ZONE", "9f0bb7ec7720e4f680ee3aa3d22c1c9d", 384968, 300),
MACGAME("lzone", "v2", "L-ZONE", "276bee761e48a6fd709df77d5c2f60dd", 395344, 300),
{
{
Commit: 53267cbad30b2456262cd3b9a79a69f3de331f8c
https://github.com/scummvm/scummvm/commit/53267cbad30b2456262cd3b9a79a69f3de331f8c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-05-23T21:19:24+02:00
Commit Message:
MOHAWK: Added detection for two Little Ark company games. Inspired by bug #12275
Changed paths:
engines/mohawk/detection.cpp
engines/mohawk/detection_tables.h
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp
index 2c25138083..e262153fed 100644
--- a/engines/mohawk/detection.cpp
+++ b/engines/mohawk/detection.cpp
@@ -58,6 +58,8 @@ static const PlainGameDescriptor mohawkGames[] = {
{"bearfight", "The Berenstain Bears Get in a Fight"},
{"beardark", "The Berenstain Bears In The Dark"},
{"arthurcomp", "Arthur's Computer Adventure"},
+ {"create", "The Story of Creation"},
+ {"daniel", "Daniel in the Lions' Den"},
{"harryhh","Harry and the Haunted House"},
{"stellaluna", "Stellaluna"},
{"sheila", "Sheila Rae, the Brave"},
diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h
index 8195d5cc54..6f5ba9b7a9 100644
--- a/engines/mohawk/detection_tables.h
+++ b/engines/mohawk/detection_tables.h
@@ -2928,6 +2928,70 @@ static const MohawkGameDescription gameDescriptions[] = {
0
},
+ // From sev
+ {
+ {
+ "create",
+ "",
+ AD_ENTRY1s("CREATE.LB", "8a94e13093dd3e2f58c220a1f265a7be", 1217),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO1(GUIO_NOASPECT)
+ },
+ GType_LIVINGBOOKSV2,
+ 0,
+ 0,
+ },
+
+ // From sev
+ {
+ {
+ "create",
+ "Demo",
+ AD_ENTRY1s("CREATED.LB", "86165d80189815ada2abd67e55258486", 826),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_DEMO,
+ GUIO1(GUIO_NOASPECT)
+ },
+ GType_LIVINGBOOKSV2,
+ 0,
+ 0,
+ },
+
+ // From sev
+ {
+ {
+ "daniel",
+ "",
+ AD_ENTRY1s("DANIEL.LB", "cdea21d55f0ead70c7990d2f1cfbc160", 1300),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO1(GUIO_NOASPECT)
+ },
+ GType_LIVINGBOOKSV2,
+ 0,
+ 0,
+ },
+
+ // From sev
+ {
+ {
+ "daniel",
+ "Demo",
+ AD_ENTRY1s("DANIELD.LB", "4220631d9f677f694fa9d59a7c242dbe", 651),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_DEMO,
+ GUIO1(GUIO_NOASPECT)
+ },
+ GType_LIVINGBOOKSV2,
+ 0,
+ 0,
+ },
+
{ AD_TABLE_END_MARKER, 0, 0, 0 }
};
More information about the Scummvm-git-logs
mailing list