From 5cf2d1a7d12ede7bc51981e1650aa1981f219697 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 2 Jun 2025 06:01:19 +1000 Subject: [PATCH] Further clarify `joypad.setanalog` docs fixes d48bea5 see #2310 --- src/BizHawk.Client.Common/lua/CommonLibs/JoypadLuaLibrary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/lua/CommonLibs/JoypadLuaLibrary.cs b/src/BizHawk.Client.Common/lua/CommonLibs/JoypadLuaLibrary.cs index ebfaf511c5..2aedeac5ab 100644 --- a/src/BizHawk.Client.Common/lua/CommonLibs/JoypadLuaLibrary.cs +++ b/src/BizHawk.Client.Common/lua/CommonLibs/JoypadLuaLibrary.cs @@ -45,7 +45,7 @@ namespace BizHawk.Client.Common } [LuaMethodExample("joypad.setanalog( { [ \"Tilt X\" ] = -63, [ \"Tilt Y\" ] = 127 } );")] - [LuaMethod("setanalog", "sets the given analog controls to their provided values for the current frame.")] + [LuaMethod("setanalog", "Sets the given analog controls to their provided values as autoholds. Set axes to the empty string to clear individual holds.")] public void SetAnalog(LuaTable controls, int? controller = null) { var dict = new Dictionary();