Skip to content

Commit d812c12

Browse files
authored
options_menu: remove LT/RT input for switching tabs (#440)
1 parent 27d4af1 commit d812c12

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

UnleashedRecomp/ui/options_menu.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -449,11 +449,8 @@ static bool DrawCategories()
449449

450450
auto inputState = SWA::CInputState::GetInstance();
451451

452-
bool moveLeft = !g_lockedOnOption && (inputState->GetPadState().IsTapped(SWA::eKeyState_LeftBumper) ||
453-
inputState->GetPadState().IsTapped(SWA::eKeyState_LeftTrigger));
454-
455-
bool moveRight = !g_lockedOnOption && (inputState->GetPadState().IsTapped(SWA::eKeyState_RightBumper) ||
456-
inputState->GetPadState().IsTapped(SWA::eKeyState_RightTrigger));
452+
bool moveLeft = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_LeftBumper);
453+
bool moveRight = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_RightBumper);
457454

458455
if (moveLeft)
459456
{

0 commit comments

Comments
 (0)