[Scummvm-cvs-logs] scummvm master -> 4ba8819582ee6bc6e89016f19bc5754ef7f837e2

somaen einarjohan at somadalen.com
Mon Oct 22 23:05:42 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
4ba8819582 WINTERMUTE: Avoid using __DATE__ and __TIME__ in-engine


Commit: 4ba8819582ee6bc6e89016f19bc5754ef7f837e2
    https://github.com/scummvm/scummvm/commit/4ba8819582ee6bc6e89016f19bc5754ef7f837e2
Author: Einar Johan Trøan Sømåen (einarjohants at gmail.com)
Date: 2012-10-22T14:01:00-07:00

Commit Message:
WINTERMUTE: Avoid using __DATE__ and __TIME__ in-engine

Changed paths:
    engines/wintermute/base/base_game.cpp



diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp
index f0b1171..b6886b7 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());






More information about the Scummvm-git-logs mailing list