diff options
author | Eugene Sandulenko | 2014-08-09 15:38:03 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-08-09 15:38:03 +0200 |
commit | 253d443085407b56b0ccaed88057fce057791122 (patch) | |
tree | 9a53aa4bd7af267c406934d68a21d020f40b3144 /base/version.cpp | |
parent | bda6debd7e1a4e1ae69e87739a0726d39d940dbb (diff) | |
parent | 0c625084c22e7a0d4134e93dd277b1675c45ab29 (diff) | |
download | scummvm-rg350-253d443085407b56b0ccaed88057fce057791122.tar.gz scummvm-rg350-253d443085407b56b0ccaed88057fce057791122.tar.bz2 scummvm-rg350-253d443085407b56b0ccaed88057fce057791122.zip |
Merge pull request #490 from raziel-/patch-2
AMIGAOS: Add AmigaOS version format
Diffstat (limited to 'base/version.cpp')
-rw-r--r-- | base/version.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/version.cpp b/base/version.cpp index fba3554f67..ef02ff9d21 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"; |