We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d4af1 commit d812c12Copy full SHA for d812c12
1 file changed
UnleashedRecomp/ui/options_menu.cpp
@@ -449,11 +449,8 @@ static bool DrawCategories()
449
450
auto inputState = SWA::CInputState::GetInstance();
451
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));
+ bool moveLeft = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_LeftBumper);
+ bool moveRight = !g_lockedOnOption && inputState->GetPadState().IsTapped(SWA::eKeyState_RightBumper);
457
458
if (moveLeft)
459
{
0 commit comments