Skip to content

Commit

Permalink
PS2: beautified & simplified version on screen
Browse files Browse the repository at this point in the history
  • Loading branch information
sunmax committed Jan 18, 2014
1 parent a2313ae commit 7dc0a54
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions base/version.cpp
Expand Up @@ -56,9 +56,15 @@
* to properly work in exports (i.e. release tar balls etc.).
*/
const char *gScummVMVersion = SCUMMVM_VERSION;
#ifdef __PLAYSTATION2__
const char *gScummVMBuildDate = "2013-05-31"; /* ScummVM 1.6.0 Release */
const char *gScummVMVersionDate = SCUMMVM_VERSION " - PlayStation2";
const char *gScummVMFullVersion = "ScummVM " SCUMMVM_VERSION " - PlayStation2";
#else
const char *gScummVMBuildDate = __DATE__ " " __TIME__;
const char *gScummVMVersionDate = SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")";
const char *gScummVMFullVersion = "ScummVM " SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")";
#endif
const char *gScummVMFeatures = ""
#ifdef TAINTED_BUILD
// TAINTED means the build contains engines/subengines not enabled by default
Expand Down

0 comments on commit 7dc0a54

Please sign in to comment.