Revert "Fixed event spam when using the Nintendo Switch controller"

This commit is contained in:
Marcel Admiraal 2021-12-17 17:14:07 +00:00 committed by GitHub
parent 58712e96ae
commit 39136ce3e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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