diff options
author | Eugene Sandulenko | 2006-03-14 03:08:14 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-03-14 03:08:14 +0000 |
commit | 60793c0e641a36ef1153605657b48df268b86830 (patch) | |
tree | a67716ef116d199775c0dfe226c5d8e6503947c1 /base | |
parent | b45dcc4df372f2d860e13972eee96f3540f04405 (diff) | |
download | scummvm-rg350-60793c0e641a36ef1153605657b48df268b86830.tar.gz scummvm-rg350-60793c0e641a36ef1153605657b48df268b86830.tar.bz2 scummvm-rg350-60793c0e641a36ef1153605657b48df268b86830.zip |
Positioned logo properly, added different version number rendering and
got rid of antialiasing artifacts
svn-id: r21270
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 1 | ||||
-rw-r--r-- | base/version.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/base/main.cpp b/base/main.cpp index d32849dfb0..b2f32edb1e 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -97,6 +97,7 @@ */ const char *gScummVMVersion = SCUMMVM_VERSION; const char *gScummVMBuildDate = __DATE__ " " __TIME__; +const char *gScummVMVersionDate = SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")"; const char *gScummVMFullVersion = "ScummVM " SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")"; const char *gScummVMFeatures = "" #ifdef USE_TREMOR diff --git a/base/version.h b/base/version.h index f274f18889..887fc4df1d 100644 --- a/base/version.h +++ b/base/version.h @@ -24,6 +24,7 @@ extern const char *gScummVMVersion; // e.g. "0.4.1" extern const char *gScummVMBuildDate; // e.g. "2003-06-24" +extern const char *gScummVMVersionDate; // e.g. "0.4.1 (2003-06-24)" extern const char *gScummVMFullVersion; // e.g. "ScummVM 0.4.1 (2003-06-24)" extern const char *gScummVMFeatures; // e.g. "ALSA MPEG2 zLib" |