diff --git a/Source/Core/InputCommon/Src/SDL_Util.cpp b/Source/Core/InputCommon/Src/SDL_Util.cpp index 3ca4a834e6..5c3c33ba3f 100644 --- a/Source/Core/InputCommon/Src/SDL_Util.cpp +++ b/Source/Core/InputCommon/Src/SDL_Util.cpp @@ -102,7 +102,7 @@ bool SearchDevices(std::vector &_joyinfo, int &_NumPads, int &_ bool AvoidValues(int value, bool NoTriggerFilter) { // Avoid detecting very small or very big (for triggers) values - if( (value > -0x2000 && value < 0x2000) // Small values + if( (value > -200 && value < 200) // Small values || ((value < -0x6000 || value > 0x6000) && !NoTriggerFilter)) // Big values return true; // Avoid else