about summary refs log tree commit diff
path: root/src/game/client/gameclient.cpp
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-09-29 19:55:33 +0200
committeroy <Tom_Adams@web.de>2010-09-29 19:55:33 +0200
commitb08fdf2fb29f2e6a5383271da498e74c57e41694 (patch)
tree3be8bba514149769a9e1788befe466688a4063e3 /src/game/client/gameclient.cpp
parentaaf8e2bc8e02d37fb132c8acd7c2a8fe82c15117 (diff)
downloadzcatch-b08fdf2fb29f2e6a5383271da498e74c57e41694.tar.gz
zcatch-b08fdf2fb29f2e6a5383271da498e74c57e41694.zip
fixed initialisation message. Closes #194
Diffstat (limited to 'src/game/client/gameclient.cpp')
-rw-r--r--src/game/client/gameclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp
index fcdafeaf..11841e5b 100644
--- a/src/game/client/gameclient.cpp
+++ b/src/game/client/gameclient.cpp
@@ -290,7 +290,7 @@ void CGameClient::OnInit()
 	
 	int64 End = time_get();
 	char aBuf[256];
-	str_format(aBuf, sizeof(aBuf), "initialisation finished after %f.2ms", ((End-Start)*1000)/(float)time_freq());
+	str_format(aBuf, sizeof(aBuf), "initialisation finished after %.2fms", ((End-Start)*1000)/(float)time_freq());
 	Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "gameclient", aBuf);
 	
 	m_ServerMode = SERVERMODE_PURE;