Skip to content

Commit

Permalink
More UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
z2442 committed Apr 30, 2024
1 parent 4019b7b commit 4001a49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/UI/AdvancedOptionsScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void IAdvancedOptionsScreen::Update( float elapsed_time, const v2 & stick, u32 o
{
element->OnNext();
}
if( new_buttons & (PSP_CTRL_CROSS/*|PSP_CTRL_START*/) )
if( new_buttons & (PSP_CTRL_CROSS|PSP_CTRL_START) )
{
element->OnSelected();
}
Expand Down
2 changes: 1 addition & 1 deletion Source/UI/CheatOptionsScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void ICheatOptionsScreen::Update( float elapsed_time, const v2 & stick, u32 old_
{
element->OnNext();
}
if( new_buttons & (PSP_CTRL_CROSS/*|PSP_CTRL_START*/) )
if( new_buttons & (PSP_CTRL_CROSS|PSP_CTRL_START) )
{
element->OnSelected();
}
Expand Down
2 changes: 1 addition & 1 deletion Source/UI/RomPreferencesScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ void IRomPreferencesScreen::Update( float elapsed_time, const v2 & stick, u32 ol
{
element->OnNext();
}
if( new_buttons & (PSP_CTRL_CROSS/*|PSP_CTRL_START*/) )
if( new_buttons & (PSP_CTRL_CROSS|PSP_CTRL_START) )
{
element->OnSelected();
}
Expand Down

0 comments on commit 4001a49

Please sign in to comment.