1
0

Missing space fix.

This commit is contained in:
Alexander Harkness 2014-10-21 14:17:04 +01:00
parent 2b920f9e21
commit 8ddc40e44b

View File

@ -212,7 +212,7 @@ void cWorld::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;