mirror of
https://github.com/phoboslab/wipeout-rewrite
synced 2024-12-26 09:59:04 +01:00
add: hall of fame nav
This commit is contained in:
parent
04008d76b9
commit
e916dfbb0c
1 changed files with 2 additions and 2 deletions
|
@ -325,10 +325,10 @@ static void hall_of_fame_draw_name_entry(menu_t *menu, ui_pos_t anchor, vec2i_t
|
|||
c_first = 36;
|
||||
}
|
||||
|
||||
if (input_pressed(A_MENU_UP)) {
|
||||
if (input_pressed(A_MENU_UP) || input_pressed(A_MENU_UP_2) || input_pressed(A_MENU_UP_3)) {
|
||||
hs_char_index++;
|
||||
}
|
||||
else if (input_pressed(A_MENU_DOWN)) {
|
||||
else if (input_pressed(A_MENU_DOWN) || input_pressed(A_MENU_DOWN_2) || input_pressed(A_MENU_DOWN_3)) {
|
||||
hs_char_index--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue