fixed initialisation message. Closes #194

This commit is contained in:
oy 2010-09-29 19:55:33 +02:00
parent aaf8e2bc8e
commit b08fdf2fb2

View file

@ -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;