diff options
author | cheapie <no-email-for-you@example.com> | 2024-04-20 19:50:47 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2024-04-20 19:50:47 -0500 |
commit | 2fad315ef4f99de1cdc8d6891610cbaf300ac969 (patch) | |
tree | 400602dba393575bea0a90f2cc75bdd5a77145f8 | |
parent | d079e67b6bbe216ecae410a463be2dc02c44307e (diff) | |
download | celevator-2fad315ef4f99de1cdc8d6891610cbaf300ac969.tar celevator-2fad315ef4f99de1cdc8d6891610cbaf300ac969.tar.gz celevator-2fad315ef4f99de1cdc8d6891610cbaf300ac969.tar.bz2 celevator-2fad315ef4f99de1cdc8d6891610cbaf300ac969.tar.xz celevator-2fad315ef4f99de1cdc8d6891610cbaf300ac969.zip |
Slow down dispatcher interrupt loop when ABM is not active
-rw-r--r-- | dispatcherfw.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatcherfw.lua b/dispatcherfw.lua index 60e91ca..fcee154 100644 --- a/dispatcherfw.lua +++ b/dispatcherfw.lua @@ -541,7 +541,7 @@ elseif event.channel == "status" then end end elseif event.type == "abm" or event.iid == "run" and (mem.screenstate == "status" or mem.screenstate == "menu") then - interrupt(1.5,"run") + interrupt(5,"run") if not mem.upcalls then mem.upcalls = {} end if not mem.dncalls then mem.dncalls = {} end if not mem.upeta then mem.upeta = {} end |