Have to resort to this to have detect core working properly
again for zipped archives
This commit is contained in:
parent
4cdd9f9540
commit
58f16896c8
|
@ -795,6 +795,9 @@ int menu_parse_and_resolve(file_list_t *list, file_list_t *menu_list)
|
||||||
RARCH_LOG("label: %s\n", label);
|
RARCH_LOG("label: %s\n", label);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (!strcmp(label, "deferred_core_list"))
|
||||||
|
return menu_entries_push_list(driver.menu, list, path, label, type);
|
||||||
|
|
||||||
if (menu_parse_check(label, type) == -1)
|
if (menu_parse_check(label, type) == -1)
|
||||||
return - 1;
|
return - 1;
|
||||||
|
|
||||||
|
|
|
@ -333,21 +333,11 @@ static int action_ok_file_load_with_detect_core(const char *path,
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
else if (ret == 0)
|
else if (ret == 0)
|
||||||
{
|
menu_entries_push(
|
||||||
file_list_push(
|
|
||||||
driver.menu->menu_stack,
|
driver.menu->menu_stack,
|
||||||
g_settings.libretro_directory,
|
g_settings.libretro_directory,
|
||||||
"deferred_core_list",
|
"deferred_core_list",
|
||||||
0,
|
0, driver.menu->selection_ptr);
|
||||||
driver.menu->selection_ptr);
|
|
||||||
menu_clear_navigation(driver.menu, true);
|
|
||||||
menu_entries_push_list(
|
|
||||||
driver.menu,
|
|
||||||
driver.menu->selection_buf,
|
|
||||||
g_settings.libretro_directory,
|
|
||||||
"deferred_core_list",
|
|
||||||
0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue