options_menu: remove LT/RT input for switching tabs (#440)

This commit is contained in:
Hyper 2025-02-20 19:47:35 +00:00 committed by GitHub
parent 27d4af12ad
commit d812c12d06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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