Skip to content

Commit

Permalink
Reduce default Deadzone value
Browse files Browse the repository at this point in the history
25% is far too much for most controllers.
  • Loading branch information
j8r committed Nov 22, 2023
1 parent f3c95f7 commit 666cab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/api/Controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class ControllerBase

struct AxisSetting
{
AxisSetting(float deadzone = 0.25f) : deadzone(deadzone) {}
AxisSetting(float deadzone = 0.15f) : deadzone(deadzone) {}
float deadzone;
float range = 1.0f;
};
Expand Down

0 comments on commit 666cab0

Please sign in to comment.