small try

This commit is contained in:
kremsy 2014-03-08 11:47:56 +01:00 committed by Steffen Schröder
parent 36e28fecac
commit e6866b8543

View File

@ -338,7 +338,7 @@ class ManiaControl implements CommandListener, TimerListener {
// Yield for next tick
$loopEnd = microtime(true);
$sleepTime = (int)(1000 - ($loopEnd - $loopStart) * 1000000);
$sleepTime = (int)(5000 - ($loopEnd - $loopStart) * 1000000);
if ($sleepTime > 0) {
usleep($sleepTime);
}