mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 20:43:10 +00:00
Fix initialization from incompatible pointer type
This commit is contained in:
parent
2ac4bb7767
commit
67710daf4b
@ -3926,6 +3926,11 @@ static void xmb_list_clear(file_list_t *list)
|
|||||||
xmb_free_list_nodes(list, false);
|
xmb_free_list_nodes(list, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void xmb_list_free(file_list_t *list, size_t a, size_t b)
|
||||||
|
{
|
||||||
|
xmb_list_clear(list);
|
||||||
|
}
|
||||||
|
|
||||||
static void xmb_list_deep_copy(const file_list_t *src, file_list_t *dst)
|
static void xmb_list_deep_copy(const file_list_t *src, file_list_t *dst)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
@ -4418,7 +4423,7 @@ menu_ctx_driver_t menu_ctx_xmb = {
|
|||||||
xmb_menu_init_list,
|
xmb_menu_init_list,
|
||||||
xmb_list_insert,
|
xmb_list_insert,
|
||||||
NULL,
|
NULL,
|
||||||
xmb_list_clear, /* free */
|
xmb_list_free,
|
||||||
xmb_list_clear,
|
xmb_list_clear,
|
||||||
xmb_list_cache,
|
xmb_list_cache,
|
||||||
xmb_list_push,
|
xmb_list_push,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user