From 93dbd746db3775f11cc2319a4792822c6f5a4797 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 3 Sep 2021 06:31:40 +0200 Subject: [PATCH] (Android) Buildfix --- menu/menu_driver.c | 2 +- menu/menu_input.h | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/menu/menu_driver.c b/menu/menu_driver.c index f8c8fb817d..9a719ed5ef 100644 --- a/menu/menu_driver.c +++ b/menu/menu_driver.c @@ -540,7 +540,7 @@ bool menu_input_key_bind_poll_find_hold_pad( return false; } -static bool menu_input_key_bind_poll_find_hold( +bool menu_input_key_bind_poll_find_hold( unsigned max_users, struct menu_bind_state *new_state, struct retro_keybind * output) diff --git a/menu/menu_input.h b/menu/menu_input.h index 37191da92e..eea41218ed 100644 --- a/menu/menu_input.h +++ b/menu/menu_input.h @@ -239,6 +239,11 @@ bool menu_input_dialog_get_display_kb(void); void menu_input_dialog_end(void); +bool menu_input_key_bind_poll_find_hold( + unsigned max_users, + struct menu_bind_state *new_state, + struct retro_keybind * output); + RETRO_END_DECLS #endif