mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Some C89_BUILD fixes
This commit is contained in:
parent
edb70936ae
commit
16f59aba96
@ -3735,8 +3735,10 @@ static void xmb_list_insert(void *userdata,
|
||||
static void xmb_list_clear(file_list_t *list)
|
||||
{
|
||||
size_t i;
|
||||
menu_animation_ctx_tag_t tag;
|
||||
size_t size = list->size;
|
||||
menu_animation_ctx_tag_t tag = { (uintptr_t)list };
|
||||
|
||||
tag.id = (uintptr_t)list;
|
||||
|
||||
menu_animation_ctl(MENU_ANIMATION_CTL_KILL_BY_TAG, &tag);
|
||||
|
||||
@ -3755,8 +3757,10 @@ static void xmb_list_clear(file_list_t *list)
|
||||
static void xmb_list_deep_copy(const file_list_t *src, file_list_t *dst)
|
||||
{
|
||||
size_t i;
|
||||
menu_animation_ctx_tag_t tag;
|
||||
size_t size = dst->size;
|
||||
menu_animation_ctx_tag_t tag = { (uintptr_t)dst };
|
||||
|
||||
tag.id = (uintptr_t)dst;
|
||||
|
||||
menu_animation_ctl(MENU_ANIMATION_CTL_KILL_BY_TAG, &tag);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user