summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin/common/after.lua12
1 files changed, 1 insertions, 11 deletions
diff --git a/builtin/common/after.lua b/builtin/common/after.lua
index 30a9c7bad..cdfaaab86 100644
--- a/builtin/common/after.lua
+++ b/builtin/common/after.lua
@@ -1,18 +1,8 @@
local jobs = {}
local time = 0.0
-local last = core.get_us_time() / 1000000
core.register_globalstep(function(dtime)
- local new = core.get_us_time() / 1000000
- if new > last then
- time = time + (new - last)
- else
- -- Overflow, we may lose a little bit of time here but
- -- only 1 tick max, potentially running timers slightly
- -- too early.
- time = time + new
- end
- last = new
+ time = time + dtime
if #jobs < 1 then
return