diff options
author | 2021-11-05 02:46:04 +1100 | |
---|---|---|
committer | 2021-11-05 02:46:04 +1100 | |
commit | de9ed121867b8665060fb91fc1dbee0dfa3ca6fa (patch) | |
tree | 790bf80e2da36d3c9cc0542514a96aae2fe7b467 /plugins/cheatfind/init.lua | |
parent | f196989f8bbd8163b58aaf20f64904eafbfea52f (diff) |
plugins: Reduced amnesia for autofire and inputmacro plugins.
Made autofire and inputmacro plugins capable of remembering settings if
the host input device for the binding is missing or if an input for a
slot device that isn't present is referenced.
Diffstat (limited to 'plugins/cheatfind/init.lua')
-rw-r--r-- | plugins/cheatfind/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cheatfind/init.lua b/plugins/cheatfind/init.lua index 5018957d211..69330342da5 100644 --- a/plugins/cheatfind/init.lua +++ b/plugins/cheatfind/init.lua @@ -360,7 +360,7 @@ function cheatfind.startplugin() local function menu_lim(val, min, max, menuitem) if min == max then - menuitem[3] = "on" + menuitem[3] = "on" elseif val == min then menuitem[3] = "r" elseif val == max then |