From e6866b854378addd1d609cc70b2031c4bb63c72c Mon Sep 17 00:00:00 2001 From: kremsy Date: Sat, 8 Mar 2014 11:47:56 +0100 Subject: [PATCH] small try --- application/core/ManiaControl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/ManiaControl.php b/application/core/ManiaControl.php index 22192c70..83ffb628 100644 --- a/application/core/ManiaControl.php +++ b/application/core/ManiaControl.php @@ -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); }