Sleep for 5 seconds rather than 5 milliseconds.

This commit is contained in:
Gunnar Beutner 2012-09-25 15:35:46 +02:00
parent f8aa5f67a2
commit e1fc41e735
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void Application::TimeWatchThreadProc(void)
double lastLoop = Utility::GetTime();
for (;;) {
Sleep(5);
Sleep(5000);
double now = Utility::GetTime();
double timeDiff = lastLoop - now;