From 60b4ce81cf75627712d9754e0cd705fe51448ae8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Sep 2014 03:58:00 +0200 Subject: [PATCH] (Menu) Fix core name representation in core list --- frontend/menu/menu_entries.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/menu/menu_entries.c b/frontend/menu/menu_entries.c index 85649d7768..30a8736d26 100644 --- a/frontend/menu/menu_entries.c +++ b/frontend/menu/menu_entries.c @@ -784,7 +784,7 @@ int menu_parse_and_resolve(file_list_t *list, file_list_t *menu_list) unsigned type = 0; file_list_get_at_offset(list, i, &path, NULL, &type); - if (type != MENU_FILE_PLAIN) + if (type != MENU_FILE_CORE) continue; fill_pathname_join(core_path, dir, path, sizeof(core_path));