mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
(menu_displaylist_parse_horizontal_content_actions -
Move playlist code up
This commit is contained in:
parent
df17764673
commit
1b754cf62d
@ -2915,6 +2915,7 @@ static int menu_displaylist_parse_horizontal_content_actions(
|
|||||||
unsigned idx = rpl_entry_selection_ptr;
|
unsigned idx = rpl_entry_selection_ptr;
|
||||||
menu_handle_t *menu = NULL;
|
menu_handle_t *menu = NULL;
|
||||||
const char *label = NULL;
|
const char *label = NULL;
|
||||||
|
const char *entry_path = NULL;
|
||||||
const char *core_path = NULL;
|
const char *core_path = NULL;
|
||||||
const char *core_name = NULL;
|
const char *core_name = NULL;
|
||||||
const char *db_name = NULL;
|
const char *db_name = NULL;
|
||||||
@ -2925,6 +2926,11 @@ static int menu_displaylist_parse_horizontal_content_actions(
|
|||||||
if (!menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu))
|
if (!menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
menu_driver_ctl(RARCH_MENU_CTL_PLAYLIST_GET, &playlist);
|
||||||
|
|
||||||
|
playlist_get_index(playlist, idx,
|
||||||
|
&entry_path, &label, &core_path, &core_name, NULL, &db_name);
|
||||||
|
|
||||||
if (!rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL)
|
if (!rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL)
|
||||||
&& string_is_equal(menu->deferred_path, fullpath))
|
&& string_is_equal(menu->deferred_path, fullpath))
|
||||||
menu_displaylist_parse_load_content_settings(info);
|
menu_displaylist_parse_load_content_settings(info);
|
||||||
@ -2943,11 +2949,6 @@ static int menu_displaylist_parse_horizontal_content_actions(
|
|||||||
MENU_SETTING_ACTION_DELETE_ENTRY, 0, 0);
|
MENU_SETTING_ACTION_DELETE_ENTRY, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
menu_driver_ctl(RARCH_MENU_CTL_PLAYLIST_GET, &playlist);
|
|
||||||
|
|
||||||
playlist_get_index(playlist, idx,
|
|
||||||
NULL, &label, &core_path, &core_name, NULL, &db_name);
|
|
||||||
|
|
||||||
if (!string_is_empty(db_name))
|
if (!string_is_empty(db_name))
|
||||||
{
|
{
|
||||||
char db_path[PATH_MAX_LENGTH];
|
char db_path[PATH_MAX_LENGTH];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user