mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-10 21:52:42 +00:00
Rename menu_list_destroy
This commit is contained in:
parent
3a4ee2d89a
commit
c9519b90fd
@ -150,7 +150,7 @@ void menu_list_refresh(file_list_t *list)
|
||||
menu_navigation_clear(nav, true);
|
||||
}
|
||||
|
||||
static void menu_list_destroy(file_list_t *list)
|
||||
static void menu_list_free_list(file_list_t *list)
|
||||
{
|
||||
unsigned i;
|
||||
driver_t *driver = driver_get_ptr();
|
||||
@ -174,8 +174,8 @@ void menu_list_free(menu_list_t *menu_list)
|
||||
if (!menu_list)
|
||||
return;
|
||||
|
||||
menu_list_destroy(menu_list->menu_stack);
|
||||
menu_list_destroy(menu_list->selection_buf);
|
||||
menu_list_free_list(menu_list->menu_stack);
|
||||
menu_list_free_list(menu_list->selection_buf);
|
||||
free(menu_list);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user