1
0

Fixed startup timings on server restart.

This commit is contained in:
madmaxoft 2013-10-07 10:45:42 +02:00
parent 4c4475f3b5
commit 68605b6dce

View File

@ -92,10 +92,6 @@ void cRoot::InputThread(void * a_Params)
void cRoot::Start(void)
{
cTimer Time;
long long mseconds = Time.GetNowTime();
cDeadlockDetect dd;
delete m_Log;
m_Log = new cMCLogger();
@ -103,6 +99,9 @@ void cRoot::Start(void)
m_bStop = false;
while (!m_bStop)
{
cTimer Time;
long long mseconds = Time.GetNowTime();
m_bRestart = false;
LoadGlobalSettings();