mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Remove unused menu_list_push_refresh
This commit is contained in:
parent
09d6294dc2
commit
bbe6b5c809
@ -374,21 +374,9 @@ void menu_list_push(file_list_t *list,
|
||||
menu_list_insert(list, path, label, type, directory_ptr);
|
||||
}
|
||||
|
||||
void menu_list_push_refresh(file_list_t *list,
|
||||
void menu_list_push_stack(menu_list_t *list,
|
||||
const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr)
|
||||
{
|
||||
menu_handle_t *menu = menu_driver_get_ptr();
|
||||
if (!menu || !list)
|
||||
return;
|
||||
|
||||
menu_list_push(list, path, label, type, directory_ptr);
|
||||
menu_navigation_clear(&menu->navigation, true);
|
||||
menu->need_refresh = true;
|
||||
}
|
||||
|
||||
void menu_list_push_stack(menu_list_t *list, const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr)
|
||||
{
|
||||
if (list)
|
||||
menu_list_push(list->menu_stack, path, label, type, directory_ptr);
|
||||
|
@ -86,10 +86,6 @@ void menu_list_push(file_list_t *list,
|
||||
const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr);
|
||||
|
||||
void menu_list_push_refresh(file_list_t *list,
|
||||
const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr);
|
||||
|
||||
void menu_list_push_stack(menu_list_t *list,
|
||||
const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user