mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-02-11 01:54:24 +01:00
JoystickDeadZone setting description updated.
This commit is contained in:
parent
a551314152
commit
2b9e77e60f
|
|
@ -42,10 +42,10 @@ namespace SteamController
|
|||
}
|
||||
|
||||
[Browsable(true)]
|
||||
[Description("Deadzone for left and right sticks. Enter a number between 0 and 32768. If this number is too small you may experience drift. 5000 or smaller is recommended.")]
|
||||
[Description("Deadzone for left and right sticks in X360 and DS4 mode. Enter a number between 0 and 32767. If this number is too small you may experience drift. 5000 or smaller is recommended, 3000 is default.")]
|
||||
public short JoystickDeadZone
|
||||
{
|
||||
get { return Get<short>("JoystickDeadZone", 5000); }
|
||||
get { return Get<short>("JoystickDeadZone", 3000); }
|
||||
set { Set("JoystickDeadZone", value); }
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue