From 4fd52088e4308b09dd586ede8df0d922a41da51c Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 1 Jun 2025 11:05:10 +1000 Subject: [PATCH] Drop outdated part of `joypad.setanalog` docs fixes d48bea505 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 5e75a9aaef..ebfaf511c5 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. Note that unlike set() there is only the logic of overriding with the given value.")] + [LuaMethod("setanalog", "sets the given analog controls to their provided values for the current frame.")] public void SetAnalog(LuaTable controls, int? controller = null) { var dict = new Dictionary();