trying to fix menu problems with analog controllers

This commit is contained in:
Thomas Jentzsch 2021-12-15 12:26:00 +01:00
parent 80f40a3e5b
commit db11e0c9c2
1 changed files with 2 additions and 3 deletions

View File

@ -838,11 +838,10 @@ void PhysicalJoystickHandler::handleRegularAxisEvent(const PhysicalJoystickPtr j
// Now filter out consecutive, similar values
// (only pass on the event if the state has changed)
if(value != j->axisLastValue[axis])
{
myHandler.overlay().handleJoyAxisEvent(stick, JoyAxis(axis), convertAxisValue(value), button);
}
}
else
myHandler.overlay().handleJoyAxisEvent(stick, JoyAxis(axis), JoyDir::NONE, button);
j->axisLastValue[axis] = value;
}
#endif