Drop outdated part of `joypad.setanalog` docs

fixes d48bea505
see #2310
This commit is contained in:
YoshiRulz 2025-06-01 11:05:10 +10:00
parent 93ebbc60d6
commit 4fd52088e4
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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<string, int?>();