From e916dfbb0c7a8591778e8bb50c84c06d9e144dfc Mon Sep 17 00:00:00 2001 From: spykyvenator Date: Fri, 1 Mar 2024 12:03:38 +0100 Subject: [PATCH] add: hall of fame nav --- src/wipeout/ingame_menus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wipeout/ingame_menus.c b/src/wipeout/ingame_menus.c index 1eb93ed..b286f46 100644 --- a/src/wipeout/ingame_menus.c +++ b/src/wipeout/ingame_menus.c @@ -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--; }