Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
Use const to enforce default maxOutput for TouchMouseStick
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryochan7 committed Dec 21, 2023
1 parent c065c4e commit 4d3b3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DS4Windows/DS4Control/ProfilePropGroups.cs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ public enum OutputStickAxes : byte
public double antiDeadY = ANTI_DEADZONE_DEFAULT;
public int vertScale = DEFAULT_VERT_SCALE;
public bool maxOutputEnabled;
public double maxOutput = 100.0;
public double maxOutput = DEFAULT_MAX_OUTPUT;
// Flags representing invert axis choices
public uint inverted;
//public bool useSmoothing;
Expand Down

0 comments on commit 4d3b3eb

Please sign in to comment.