mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
Cleanup
This commit is contained in:
parent
a1f3aea089
commit
f1b900f7bc
@ -31,7 +31,7 @@ int action_refresh_default(file_list_t *list, file_list_t *menu_list)
|
||||
entry.list = list;
|
||||
entry.stack = menu_list;
|
||||
|
||||
if (!menu_displaylist_push_onto_stack(&entry))
|
||||
if (!menu_displaylist_push(&entry))
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
@ -3971,7 +3971,7 @@ static bool menu_displaylist_push_internal(
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool menu_displaylist_push(menu_displaylist_ctx_entry_t *entry)
|
||||
bool menu_displaylist_push(menu_displaylist_ctx_entry_t *entry)
|
||||
{
|
||||
menu_file_list_cbs_t *cbs = NULL;
|
||||
const char *path = NULL;
|
||||
@ -4127,11 +4127,6 @@ bool menu_displaylist_process(void *data)
|
||||
return menu_displaylist_push_list_process((menu_displaylist_info_t*)data);
|
||||
}
|
||||
|
||||
bool menu_displaylist_push_onto_stack(void *data)
|
||||
{
|
||||
return menu_displaylist_push((menu_displaylist_ctx_entry_t*)data);
|
||||
}
|
||||
|
||||
bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data)
|
||||
{
|
||||
size_t i;
|
||||
|
@ -204,7 +204,8 @@ typedef struct menu_displaylist_ctx_entry
|
||||
} menu_displaylist_ctx_entry_t;
|
||||
|
||||
bool menu_displaylist_process(void *data);
|
||||
bool menu_displaylist_push_onto_stack(void *data);
|
||||
|
||||
bool menu_displaylist_push(menu_displaylist_ctx_entry_t *entry);
|
||||
|
||||
bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data);
|
||||
#ifdef HAVE_NETWORKING
|
||||
|
Loading…
x
Reference in New Issue
Block a user