diff options
| author | oy <Tom_Adams@web.de> | 2010-09-29 19:55:33 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-09-29 19:55:33 +0200 |
| commit | b08fdf2fb29f2e6a5383271da498e74c57e41694 (patch) | |
| tree | 3be8bba514149769a9e1788befe466688a4063e3 /src/game/client | |
| parent | aaf8e2bc8e02d37fb132c8acd7c2a8fe82c15117 (diff) | |
| download | zcatch-b08fdf2fb29f2e6a5383271da498e74c57e41694.tar.gz zcatch-b08fdf2fb29f2e6a5383271da498e74c57e41694.zip | |
fixed initialisation message. Closes #194
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/gameclient.cpp | 2 |
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; |