Turn if conditional into else if for history_list deferred push

This commit is contained in:
twinaphex 2014-10-15 19:53:00 +02:00
parent 0b8beb8874
commit 6b12a9fed2

View File

@ -1760,7 +1760,7 @@ static void menu_entries_cbs_init_bind_deferred_push(menu_file_list_cbs_t *cbs,
if (!strcmp(label, "core_list"))
cbs->action_deferred_push = deferred_push_core_list;
if (!strcmp(label, "history_list"))
else if (!strcmp(label, "history_list"))
cbs->action_deferred_push = deferred_push_history_list;
else if (!strcmp(label, "configurations"))
cbs->action_deferred_push = deferred_push_configurations;