1
0
Fork 0

Missing space.

This commit is contained in:
Alexander Harkness 2014-10-21 14:17:36 +01:00
parent 8ddc40e44b
commit 3e0f7c2b1c
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void cServer::cTickThread::Execute(void)
if (TickTime < 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;