changed thread period (250->500) for recipe

This commit is contained in:
Samuele E. Locatelli
2020-06-15 16:44:46 +02:00
parent ec6ba38e8b
commit 2043417668
+1 -1
View File
@@ -935,7 +935,7 @@ public static class ThreadsFunctions
// Update thread timer
UpdateStat(MethodBase.GetCurrentMethod().Name, sw.ElapsedMilliseconds);
// Wait
Thread.Sleep(CalcSleepTime(250, (int)sw.ElapsedMilliseconds));
Thread.Sleep(CalcSleepTime(400, (int)sw.ElapsedMilliseconds));
}
}
catch (ThreadAbortException)