From 6c8e32205d0f29797542bc8f79db2c47f92cf0ac Mon Sep 17 00:00:00 2001 From: Andre Leiradella Date: Sun, 8 Nov 2015 15:42:44 -0200 Subject: [PATCH] fixed wrong comparison --- cheevos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheevos.c b/cheevos.c index 06dad5ed9d..4beb836af8 100644 --- a/cheevos.c +++ b/cheevos.c @@ -1939,7 +1939,7 @@ void cheevos_populate_menu(menu_displaylist_info_t *info) 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); } }