Limit `core.threads` without a timeout to run 30 times per second

This commit is contained in:
Guldoman 2023-03-29 00:33:29 +02:00 committed by George Sokianos
parent c8977ca62b
commit c1adfb55d2
1 changed files with 1 additions and 1 deletions

View File

@ -1397,7 +1397,7 @@ local run_threads = coroutine.wrap(function()
core.threads[k] = nil
end
else
wait = wait or 0
wait = wait or (1/30)
thread.wake = system.get_time() + wait
minimal_time_to_wake = math.min(minimal_time_to_wake, wait)
end