From 75d3470d55335b5eb56cd73a296c15c56baf8682 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Wed, 19 May 2021 00:15:02 +0300 Subject: [PATCH] That code made very little sense --- SDL/gui.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/SDL/gui.c b/SDL/gui.c index 0e2ec315..3614a65b 100644 --- a/SDL/gui.c +++ b/SDL/gui.c @@ -921,10 +921,7 @@ static const struct menu_item controls_menu[] = { static const char *key_name(unsigned index) { - if (index >= 8) { - if (index == 8) { - return SDL_GetScancodeName(configuration.keys[8]); - } + if (index > 8) { return SDL_GetScancodeName(configuration.keys_2[index - 9]); } return SDL_GetScancodeName(configuration.keys[index]); @@ -1376,13 +1373,8 @@ void run_gui(bool is_running) case SDL_KEYDOWN: if (gui_state == WAITING_FOR_KEY) { - if (current_selection >= 8) { - if (current_selection == 8) { - configuration.keys[8] = event.key.keysym.scancode; - } - else { - configuration.keys_2[current_selection - 9] = event.key.keysym.scancode; - } + if (current_selection > 8) { + configuration.keys_2[current_selection - 9] = event.key.keysym.scancode; } else { configuration.keys[current_selection] = event.key.keysym.scancode;