From c187de605d54c28574c457b00577045483eebac1 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Tue, 8 Mar 2011 06:20:02 +0000 Subject: * Fix timestamps in games.log not resetting after a map_restart (thanks kharnov) --- src/game/g_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/g_main.c b/src/game/g_main.c index d44b13fb..3f3bf13e 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -1714,7 +1714,7 @@ void QDECL G_LogPrintf( const char *fmt, ... ) char string[ 1024 ], decolored[ 1024 ]; int min, tens, sec; - sec = level.time / 1000; + sec = ( level.time - level.startTime ) / 1000; min = sec / 60; sec -= min * 60; -- cgit