mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-19 22:42:25 +00:00
options_menu: remove LT/RT input for switching tabs (#440)
This commit is contained in:
parent
27d4af12ad
commit
d812c12d06
1 changed files with 2 additions and 5 deletions
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue