mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Buildfix + stub this out for now
This commit is contained in:
parent
432e5c02de
commit
82913126ef
@ -340,6 +340,11 @@ static int deferred_push_configurations_list(menu_displaylist_info_t *info)
|
||||
return deferred_push_dlist(info, DISPLAYLIST_CONFIGURATIONS_LIST);
|
||||
}
|
||||
|
||||
static int deferred_push_load_content_special(menu_displaylist_info_t *info)
|
||||
{
|
||||
return deferred_push_dlist(info, DISPLAYLIST_LOAD_CONTENT_LIST);
|
||||
}
|
||||
|
||||
static int deferred_push_load_content_list(menu_displaylist_info_t *info)
|
||||
{
|
||||
return deferred_push_dlist(info, DISPLAYLIST_LOAD_CONTENT_LIST);
|
||||
|
@ -2770,12 +2770,14 @@ static int menu_displaylist_parse_load_content_settings(
|
||||
#ifdef HAVE_LAKKA
|
||||
bool show_advanced_settings = settings->bools.menu_show_advanced_settings;
|
||||
#endif
|
||||
#if 0
|
||||
rarch_system_info_t *system = runloop_get_system_info();
|
||||
const struct retro_subsystem_info* subsystem = NULL;
|
||||
subsystem = system->subsystem.data;
|
||||
const struct retro_subsystem_info* subsystem = system ? system->subsystem.data : NULL;
|
||||
|
||||
if (subsystem)
|
||||
{
|
||||
for (int p = 0; p < system->subsystem.size; p++, subsystem++)
|
||||
int p;
|
||||
for (p = 0; p < system->subsystem.size; p++, subsystem++)
|
||||
{
|
||||
char s[PATH_MAX_LENGTH];
|
||||
snprintf(s, sizeof(s), "%s (%s)", msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST), subsystem->desc);
|
||||
@ -2786,6 +2788,7 @@ static int menu_displaylist_parse_load_content_settings(
|
||||
MENU_SETTING_ACTION, 0, 0);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
menu_entries_append_enum(info->list,
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_RESUME_CONTENT),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_RESUME_CONTENT),
|
||||
@ -5888,8 +5891,10 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data)
|
||||
case DISPLAYLIST_LOAD_CONTENT_LIST:
|
||||
case DISPLAYLIST_LOAD_CONTENT_SPECIAL:
|
||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||
#if 0
|
||||
printf ("AAAAAAAAAAA %s\n", settings->paths.directory_menu_content);
|
||||
fflush(stdout);
|
||||
#endif
|
||||
if (!string_is_empty(settings->paths.directory_menu_content))
|
||||
menu_entries_append_enum(info->list,
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_FAVORITES),
|
||||
|
Loading…
x
Reference in New Issue
Block a user