mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-01 01:03:11 +00:00
Implement menu_common_list_clear
This commit is contained in:
parent
287fb56159
commit
2bc0b2d3ac
@ -20,6 +20,10 @@
|
||||
|
||||
void menu_common_list_clear(void *data)
|
||||
{
|
||||
file_list_t *list = (file_list_t*)data;
|
||||
|
||||
if (list)
|
||||
file_list_clear(list);
|
||||
}
|
||||
|
||||
void menu_common_list_set_selection(void *data)
|
||||
|
@ -331,11 +331,8 @@ void menu_list_clear(file_list_t *list)
|
||||
if (driver.menu_ctx->list_clear)
|
||||
driver.menu_ctx->list_clear(list);
|
||||
|
||||
menu_common_list_clear(list);
|
||||
|
||||
end:
|
||||
|
||||
file_list_clear(list);
|
||||
menu_common_list_clear(list);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user