mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 19:54:03 +00:00
AMIGAOS: Add AmigaOS version format
AmigaOS features a "version" command which can read out version information if stored in a sepcific way. To get to that information it parses the exe for "$VER:" and prints out everything behind it. This adds such a version information to ScummVM so users on AmigaOS can read it out without the need to use "scummvm --version"
This commit is contained in:
parent
e11fe13620
commit
0c625084c2
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user