aboutsummaryrefslogtreecommitdiff
path: root/base/version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/version.cpp')
-rw-r--r--base/version.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/base/version.cpp b/base/version.cpp
index fba3554f67..fcb2740de9 100644
--- a/base/version.cpp
+++ b/base/version.cpp
@@ -56,6 +56,9 @@
* to properly work in exports (i.e. release tar balls etc.).
*/
const char *gScummVMVersion = SCUMMVM_VERSION;
+#ifdef __amigaos4__
+static const char *version_cookie __attribute__((used)) = "$VER: ScummVM " SCUMMVM_VERSION " (" __DATE__ ", " __TIME__ ")";
+#endif
#ifdef __PLAYSTATION2__
const char *gScummVMBuildDate = "Git Master"; /* ScummVM Git Master */
const char *gScummVMVersionDate = SCUMMVM_VERSION " - PlayStation2";
@@ -143,4 +146,12 @@ const char *gScummVMFeatures = ""
#ifdef USE_PNG
"PNG "
#endif
+
+#ifdef ENABLE_KEYMAPPER
+ "keymapper "
+#endif
+
+#ifdef ENABLE_VKEYBD
+ "virtual keyboard "
+#endif
;