Skip to content

Commit c79101a

Browse files
committed
Fix C89 build: replace menu_st->entries.end with end variable
1 parent 22d2e60 commit c79101a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

menu/drivers/xmb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7337,7 +7337,7 @@ static void xmb_render(void *data,
73377337
if (node)
73387338
{
73397339
/* Reset all other visible thumbnails to free memory */
7340-
for (i = menu_st->entries.begin; i < menu_st->entries.end; i++)
7340+
for (i = menu_st->entries.begin; i < end; i++)
73417341
{
73427342
if (i != selection)
73437343
{

0 commit comments

Comments
 (0)