From e159007aca43a808323f3dec23749fd52bf97b7c Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 3 Nov 2013 10:46:10 +0100 Subject: [PATCH] Remove a redundant branch. --- frontend/menu/menu_common.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index f3f47f4db2..0c8b66bd8a 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -227,10 +227,9 @@ void load_menu_game_prepare(void) msg_queue_push(g_extern.msg_queue, str, 1, 1); } - if (g_extern.system.no_game || *g_extern.fullpath) - menu_rom_history_push(*g_extern.fullpath ? g_extern.fullpath : NULL, - g_settings.libretro, - rgui->info.library_name ? rgui->info.library_name : ""); + menu_rom_history_push(*g_extern.fullpath ? g_extern.fullpath : NULL, + g_settings.libretro, + rgui->info.library_name ? rgui->info.library_name : ""); } #ifdef HAVE_RGUI