Skip to content

Commit

Permalink
C89_BUILD fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Dec 22, 2024
1 parent ce88a46 commit ab43347
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions menu/drivers/xmb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2932,13 +2932,11 @@ static void xmb_populate_entries(void *data,
menu_entry_get(&entry, 0, 0, NULL, true);

/* Quick Menu under Explore list must also be Quick Menu */
bool is_quick_menu =
( string_is_equal(entry.label, "collection")
xmb->is_quick_menu |= (
string_is_equal(entry.label, "collection")
|| (string_is_equal(entry.label, "resume_content")
|| string_is_equal(entry.label, "state_slot"))
);
/* Quick Menu under Explore list must also be Quick Menu */
xmb->is_quick_menu |= is_quick_menu;

if (!menu_explore_is_content_list() || xmb->is_quick_menu)
xmb->is_explore_list = false;
Expand Down

0 comments on commit ab43347

Please sign in to comment.