diff options
author | Einar Johan Trøan Sømåen | 2012-10-22 22:57:49 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-10-22 23:01:00 +0200 |
commit | 4ba8819582ee6bc6e89016f19bc5754ef7f837e2 (patch) | |
tree | fb216745d8793c5cf9e2b30c2b334b0f21d0ee1c /engines | |
parent | e7d4f88a57efc354cceb34e69acada84600c693d (diff) | |
download | scummvm-rg350-4ba8819582ee6bc6e89016f19bc5754ef7f837e2.tar.gz scummvm-rg350-4ba8819582ee6bc6e89016f19bc5754ef7f837e2.tar.bz2 scummvm-rg350-4ba8819582ee6bc6e89016f19bc5754ef7f837e2.zip |
WINTERMUTE: Avoid using __DATE__ and __TIME__ in-engine
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wintermute/base/base_game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp index f0b1171ca4..b6886b7a33 100644 --- a/engines/wintermute/base/base_game.cpp +++ b/engines/wintermute/base/base_game.cpp @@ -64,6 +64,7 @@ #include "engines/wintermute/ui/ui_window.h" #include "engines/wintermute/wintermute.h" #include "engines/wintermute/platform_osystem.h" +#include "base/version.h" #include "common/config-manager.h" #include "common/savefile.h" #include "common/textconsole.h" @@ -489,7 +490,7 @@ void BaseGame::DEBUG_DebugEnable(const char *filename) { LOG(0, "********** DEBUG LOG OPENED %02d-%02d-%02d (Release Build) *****************", hours, mins, secs); #endif - LOG(0, "%s ver %d.%d.%d%s, Compiled on " __DATE__ ", " __TIME__, DCGF_NAME, DCGF_VER_MAJOR, DCGF_VER_MINOR, DCGF_VER_BUILD, DCGF_VER_SUFFIX); + LOG(0, "%s - %s ver %d.%d.%d%s ", gScummVMFullVersion, DCGF_NAME, DCGF_VER_MAJOR, DCGF_VER_MINOR, DCGF_VER_BUILD, DCGF_VER_SUFFIX); AnsiString platform = BasePlatform::getPlatformName(); LOG(0, "Platform: %s", platform.c_str()); |