1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-04 13:20:15 +00:00

Merge pull request from leiradel/master

removed unnecessary comparisons
This commit is contained in:
Twinaphex 2015-11-08 18:34:04 +01:00
commit 6737ce3089

@ -1903,9 +1903,6 @@ 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)
continue;
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);
} }
@ -1917,9 +1914,6 @@ 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)
continue;
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);
} }
@ -1934,9 +1928,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 || !cheevo->active) if (cheevo->active)
continue;
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);
} }
@ -1947,9 +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 || !cheevo->active) if (!cheevo->active)
continue;
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);
} }
} }