summaryrefslogtreecommitdiffstats
path: root/player/lua
diff options
context:
space:
mode:
Diffstat (limited to 'player/lua')
-rw-r--r--player/lua/defaults.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/player/lua/defaults.lua b/player/lua/defaults.lua
index 8efa8d6315..037529940f 100644
--- a/player/lua/defaults.lua
+++ b/player/lua/defaults.lua
@@ -68,16 +68,12 @@ end
local timers = {}
--- Install a one-shot timer. Once the given amount of seconds has passed from
--- now, the callback will be called as cb(), and the timer is removed.
function mp.add_timeout(seconds, cb)
local t = mp.add_periodic_timer(seconds, cb)
t.oneshot = true
return t
end
--- Install a periodic timer. It works like add_timeout(), but after cb() is
--- called, the timer is re-added.
function mp.add_periodic_timer(seconds, cb)
local t = {
timeout = seconds,