From 583d4fd283bd2dfb82bf70a0b27464f649f3490e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 26 Feb 2016 17:55:47 +0100 Subject: [PATCH] Cleanups --- menu/menu_input.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/menu/menu_input.c b/menu/menu_input.c index d46ad62fa9..9a1ec8843b 100644 --- a/menu/menu_input.c +++ b/menu/menu_input.c @@ -272,7 +272,8 @@ void menu_input_st_cheat_cb(void *userdata, const char *str) if (str && *str) { - unsigned cheat_index = menu_input->keyboard.type - MENU_SETTINGS_CHEAT_BEGIN; + unsigned cheat_index = + menu_input->keyboard.type - MENU_SETTINGS_CHEAT_BEGIN; cheat_manager_set_code(cheat_index, str); } @@ -840,10 +841,6 @@ bool menu_input_ctl(enum menu_input_ctl_state state, void *data) return true; } -void menu_input_key_bind_set_min_max(unsigned min, unsigned max) -{ -} - static int menu_input_mouse(unsigned *action) { video_viewport_t vp; @@ -1223,7 +1220,6 @@ static int menu_input_pointer_post_iterate( return ret; } - void menu_input_post_iterate(int *ret, unsigned action) { size_t selection;