[Scummvm-git-logs] scummvm master -> af60443e7ecdba42dcbefeac79bcc10526aa5a76
sev-
noreply at scummvm.org
Sun Jun 29 11:54:53 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
0c717b0614 NEWS: Announce SLUDGE games support
af60443e7e SLUDGE: Enable engine by default and mark all games for testing
Commit: 0c717b0614c94e7f566ac7f174aaf402dcf1d19a
https://github.com/scummvm/scummvm/commit/0c717b0614c94e7f566ac7f174aaf402dcf1d19a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-06-29T13:54:26+02:00
Commit Message:
NEWS: Announce SLUDGE games support
Changed paths:
NEWS.md
diff --git a/NEWS.md b/NEWS.md
index e8166e2d9bf..1541a29fe60 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -20,6 +20,9 @@ For a more comprehensive changelog of the latest experimental code, see:
- Added support for Dog-n-cat: In the Footsteps of Unprecedented Beasts.
- Added support for Dog-n-cat: Island of Dr Ratiarty.
- Added support for Out of this World (Another World).
+ - Added support for SLUDGE-based games, such as Out of Order,
+ The Secret of Tremendous Corporation, Robin's Rescue and
+ others, 12 titles so far.
Drascula:
- Fixed displaying accented characters.
Commit: af60443e7ecdba42dcbefeac79bcc10526aa5a76
https://github.com/scummvm/scummvm/commit/af60443e7ecdba42dcbefeac79bcc10526aa5a76
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-06-29T13:54:26+02:00
Commit Message:
SLUDGE: Enable engine by default and mark all games for testing
Changed paths:
engines/sludge/configure.engine
engines/sludge/detection_tables.h
diff --git a/engines/sludge/configure.engine b/engines/sludge/configure.engine
index fe8362d09df..48223edb534 100644
--- a/engines/sludge/configure.engine
+++ b/engines/sludge/configure.engine
@@ -1,3 +1,3 @@
# This file is included from the main "configure" script
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] [components]
-add_engine sludge "Sludge" no "" "" "16bit png" "vpx universaltracker"
+add_engine sludge "Sludge" yes "" "" "16bit png" "vpx universaltracker"
diff --git a/engines/sludge/detection_tables.h b/engines/sludge/detection_tables.h
index 4576de94262..7408538d119 100644
--- a/engines/sludge/detection_tables.h
+++ b/engines/sludge/detection_tables.h
@@ -43,9 +43,9 @@ static const PlainGameDescriptor sludgeGames[] = {
{ 0, 0 }
};
-#define GAME1l(t, e, f1, m1, s1, lang, pl, langId) { { t, e, AD_ENTRY1s(f1, m1, s1), lang, pl, ADGF_UNSTABLE, GUIO1(GUIO_NOMIDI) }, langId }
+#define GAME1l(t, e, f1, m1, s1, lang, pl, langId) { { t, e, AD_ENTRY1s(f1, m1, s1), lang, pl, ADGF_TESTING, GUIO1(GUIO_NOMIDI) }, langId }
#define GAME1(t, e, f1, m1, s1) GAME1l(t, e, f1, m1, s1, Common::EN_ANY, Common::kPlatformUnknown, 0)
-#define GAME2l(t, e, f1, m1, s1, f2, m2, s2, lang, pl, langId) { { t, e, AD_ENTRY2s(f1, m1, s1, f2, m2, s2), lang, pl, ADGF_UNSTABLE, GUIO1(GUIO_NOMIDI) }, langId }
+#define GAME2l(t, e, f1, m1, s1, f2, m2, s2, lang, pl, langId) { { t, e, AD_ENTRY2s(f1, m1, s1, f2, m2, s2), lang, pl, ADGF_TESTING, GUIO1(GUIO_NOMIDI) }, langId }
#define GAME2(t, e, f1, m1, s1, f2, m2, s2) GAME2l(t, e, f1, m1, s1, f2, m2, s2, Common::EN_ANY, Common::kPlatformUnknown, 0)
More information about the Scummvm-git-logs
mailing list