summaryrefslogtreecommitdiffstats
path: root/player/lua
diff options
context:
space:
mode:
Diffstat (limited to 'player/lua')
-rw-r--r--player/lua/defaults.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/player/lua/defaults.lua b/player/lua/defaults.lua
index a1deca28ba..de28409c0e 100644
--- a/player/lua/defaults.lua
+++ b/player/lua/defaults.lua
@@ -330,8 +330,9 @@ function mp.get_next_timeout()
return timer.next_deadline - now
end
--- Run timers that have met their deadline.
--- Return: next absolute time a timer expires as number, or nil if no timers
+-- Run timers that have met their deadline at the time of invocation.
+-- Return: time>0 in seconds till the next due timer, 0 if there are due timers
+-- (aborted to avoid infinite loop), or nil if no timers
local function process_timers()
local t0 = nil
while true do