[Scummvm-git-logs] scummvm master -> 23a9a130a9f2793844a8ea7588982fa967011e7d
dreammaster
dreammaster at scummvm.org
Sun Apr 4 03:43:12 UTC 2021
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:
23a9a130a9 AGS: Enable ADGF_TESTING and build-by-default
Commit: 23a9a130a9f2793844a8ea7588982fa967011e7d
https://github.com/scummvm/scummvm/commit/23a9a130a9f2793844a8ea7588982fa967011e7d
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-04-03T20:42:14-07:00
Commit Message:
AGS: Enable ADGF_TESTING and build-by-default
Changed paths:
engines/ags/configure.engine
engines/ags/detection_tables.h
diff --git a/engines/ags/configure.engine b/engines/ags/configure.engine
index 54d048b5fa..f092d79a0d 100644
--- a/engines/ags/configure.engine
+++ b/engines/ags/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]
-add_engine ags "Adventure Game Studio" no "" "" "cxx11 16bit"
+add_engine ags "Adventure Game Studio" yes "" "" "cxx11 16bit"
diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index a48be17aac..1a172302e1 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -1417,25 +1417,30 @@ const PlainGameDescriptor GAME_NAMES[] = {
{ 0, 0 }
};
-#define INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, LANG, PLATFORM) \
+#define UNSUPPORTED_ENTRY(ID, FILENAME, MD5, SIZE, LANG, PLATFORM) \
{{ ID, PLATFORM, AD_ENTRY1s(FILENAME, MD5, SIZE), LANG, \
Common::kPlatformUnknown, ADGF_UNSTABLE, GUIO0() }, nullptr }
+#define UNSUPPORTED_DEMO_ENTRY(ID, FILENAME, MD5, SIZE) \
+ UNSUPPORTED_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "Demo")
+
+#define UNSUPPORTED_GAME_ENTRY(ID, FILENAME, MD5, SIZE) \
+ UNSUPPORTED_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, nullptr)
+
+
+#define INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, LANG, PLATFORM) \
+ {{ ID, PLATFORM, AD_ENTRY1s(FILENAME, MD5, SIZE), LANG, \
+ Common::kPlatformUnknown, ADGF_TESTING, GUIO0() }, nullptr }
+
#define DEMO_ENTRY(ID, FILENAME, MD5, SIZE) \
INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, "Demo")
#define DEMO_ENTRY_LANG(ID, FILENAME, MD5, SIZE, LANG) \
INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, LANG, "Demo")
-#define UNSUPPORTED_DEMO_ENTRY(ID, FILENAME, MD5, SIZE) \
- DEMO_ENTRY(ID, FILENAME, MD5, SIZE)
-
#define GAME_ENTRY(ID, FILENAME, MD5, SIZE) \
INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, Common::EN_ANY, nullptr)
-#define UNSUPPORTED_GAME_ENTRY(ID, FILENAME, MD5, SIZE) \
- GAME_ENTRY(ID, FILENAME, MD5, SIZE)
-
#define GAME_ENTRY_LANG(ID, FILENAME, MD5, SIZE, LANG) \
INTERNAL_ENTRY(ID, FILENAME, MD5, SIZE, LANG, nullptr)
More information about the Scummvm-git-logs
mailing list