diff --git a/frontend/menu/disp/rgui.c b/frontend/menu/disp/rgui.c index b2c766eaeb..846d047d7b 100644 --- a/frontend/menu/disp/rgui.c +++ b/frontend/menu/disp/rgui.c @@ -559,11 +559,6 @@ static void rgui_render(void) w = 5; } } - else if (menu_type == MENU_SETTINGS_OPEN_HISTORY) - { - *type_str = '\0'; - w = 0; - } else if (type >= MENU_SETTINGS_CORE_OPTION_START) strlcpy( type_str, diff --git a/frontend/menu/disp/rmenu.c b/frontend/menu/disp/rmenu.c index 8c4316f934..e41c0ac256 100644 --- a/frontend/menu/disp/rmenu.c +++ b/frontend/menu/disp/rmenu.c @@ -404,11 +404,6 @@ static void rmenu_render(void) w = 5; } } - else if (menu_type == MENU_SETTINGS_OPEN_HISTORY) - { - *type_str = '\0'; - w = 0; - } else if (type >= MENU_SETTINGS_CORE_OPTION_START) strlcpy(type_str, core_option_get_val(g_extern.system.core_options, type - MENU_SETTINGS_CORE_OPTION_START), diff --git a/frontend/menu/disp/rmenu_xui.cpp b/frontend/menu/disp/rmenu_xui.cpp index 2adefe7995..2c7b45fed8 100644 --- a/frontend/menu/disp/rmenu_xui.cpp +++ b/frontend/menu/disp/rmenu_xui.cpp @@ -623,11 +623,6 @@ static void rmenu_xui_render(void) w = 5; } } - else if (menu_type == MENU_SETTINGS_OPEN_HISTORY) - { - *type_str = '\0'; - w = 0; - } else if (type >= MENU_SETTINGS_CORE_OPTION_START) strlcpy(type_str, core_option_get_val(g_extern.system.core_options, type - MENU_SETTINGS_CORE_OPTION_START),