JoystickDeadZone setting description updated.

This commit is contained in:
DavidRGriswold 2023-09-03 08:56:14 -03:00
parent a551314152
commit 2b9e77e60f

View file

@ -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); }
}