Browse Source

Merge pull request #56028 from madmiraal/revert-55978-fix-switch-controller-event-spam

Rémi Verschelde 3 years ago
parent
commit
5ffee633cd
1 changed files with 1 additions and 4 deletions
  1. 1 4
      core/input/input.cpp

+ 1 - 4
core/input/input.cpp

@@ -922,10 +922,7 @@ void Input::joy_axis(int p_device, JoyAxis p_axis, const JoyAxisValue &p_value)
 
 	Joypad &joy = joy_names[p_device];
 
-	// Make sure that we don't generate events for up to 5% jitter
-	// This is needed for Nintendo Switch Pro controllers, which jitter at rest
-	const float MIN_AXIS_CHANGE = 0.05f;
-	if (fabs(joy.last_axis[(size_t)p_axis] - p_value.value) < MIN_AXIS_CHANGE) {
+	if (joy.last_axis[(size_t)p_axis] == p_value.value) {
 		return;
 	}