Fixed Xbox One trigger axis zero point

This commit is contained in:
Sam Lantinga 2022-01-14 15:04:26 -08:00
parent e9511f7136
commit 1a50334c46
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ static Sint16 FilterRightThumb(Sint16 axis)
static Sint16 FilterTrigger(Sint16 axis)
{
if (axis <= XINPUT_GAMEPAD_TRIGGER_THRESHOLD) {
return 0;
return SDL_MIN_SINT16;
}
return axis;
}