mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 07:13:35 +00:00
fixed wrong comparison
This commit is contained in:
parent
b1b5cb93e0
commit
6c8e32205d
@ -1939,7 +1939,7 @@ void cheevos_populate_menu(menu_displaylist_info_t *info)
|
|||||||
|
|
||||||
for (i = 0; cheevo < end; i++, cheevo++)
|
for (i = 0; cheevo < end; i++, cheevo++)
|
||||||
{
|
{
|
||||||
if (!cheevo->active)
|
if (cheevo->active)
|
||||||
menu_entries_push(info->list, cheevo->title, cheevo->description, MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
|
menu_entries_push(info->list, cheevo->title, cheevo->description, MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user