1
0

Missing space.

This commit is contained in:
Alexander Harkness 2014-10-21 14:17:36 +01:00
parent 8ddc40e44b
commit 3e0f7c2b1c

View File

@ -84,7 +84,7 @@ void cServer::cTickThread::Execute(void)
if (TickTime < msPerTick) if (TickTime < msPerTick)
{ {
// Stretch tick time until it's at least msPerTick // Stretch tick time until it's at least msPerTick
std::this_thread::sleep_for(msPerTick -TickTime); std::this_thread::sleep_for(msPerTick - TickTime);
} }
LastTime = NowTime; LastTime = NowTime;