options_menu: remove LT/RT input for switching tabs

This commit is contained in:
Hyper 2025-02-20 19:45:27 +00:00
parent 27d4af12ad
commit 9986795bbd

View file

@ -449,11 +449,8 @@ static bool DrawCategories()
auto inputState = SWA::CInputState::GetInstance(); auto inputState = SWA::CInputState::GetInstance();
bool moveLeft = !g_lockedOnOption && (inputState->GetPadState().IsTapped(SWA::eKeyState_LeftBumper) || bool moveLeft = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_LeftBumper);
inputState->GetPadState().IsTapped(SWA::eKeyState_LeftTrigger)); bool moveRight = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_RightBumper);
bool moveRight = !g_lockedOnOption && (inputState->GetPadState().IsTapped(SWA::eKeyState_RightBumper) ||
inputState->GetPadState().IsTapped(SWA::eKeyState_RightTrigger));
if (moveLeft) if (moveLeft)
{ {