diff options
author | Eugene Sandulenko | 2016-09-10 22:19:32 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-10 22:19:32 +0200 |
commit | 4af0bc492457909a13ffa688814e3b1665a66277 (patch) | |
tree | 5f7b5fa293a9ab4eab3afd799355ffbbe10526ba /base | |
parent | 2fd23749924d0ee23f0fe9e48b8bc7831df54853 (diff) | |
download | scummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.tar.gz scummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.tar.bz2 scummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.zip |
AMIGAOS: Amiga needs date in specific format in version cookie. Now AmiUpdate works
Diffstat (limited to 'base')
-rw-r--r-- | base/version.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/version.cpp b/base/version.cpp index d40dd573f0..43795294ba 100644 --- a/base/version.cpp +++ b/base/version.cpp @@ -57,7 +57,7 @@ */ const char *gScummVMVersion = SCUMMVM_VERSION; #ifdef __amigaos4__ -static const char *version_cookie __attribute__((used)) = "$VER: ScummVM " SCUMMVM_VERSION " (" __DATE__ ", " __TIME__ ")"; +static const char *version_cookie __attribute__((used)) = "$VER: ScummVM " SCUMMVM_VERSION " (" AMIGA_DATE ")"; #endif #ifdef __PLAYSTATION2__ const char *gScummVMBuildDate = "Git Master"; /* ScummVM Git Master */ |