(Content Collection) should now correctly deal with directories

This commit is contained in:
twinaphex 2015-10-11 21:32:14 +02:00
parent b6dac843a8
commit 765c4a1d85

View File

@ -2297,9 +2297,9 @@ static int menu_displaylist_parse_generic(menu_displaylist_info_t *info, bool *n
{ {
case MENU_LABEL_CONTENT_COLLECTION_LIST: case MENU_LABEL_CONTENT_COLLECTION_LIST:
if (is_dir) if (is_dir)
continue; file_type = MENU_FILE_DIRECTORY;
else
file_type = MENU_FILE_PLAYLIST_COLLECTION; file_type = MENU_FILE_PLAYLIST_COLLECTION;
break; break;
case MENU_LABEL_CORE_LIST: case MENU_LABEL_CORE_LIST:
#ifdef HAVE_LIBRETRO_MANAGEMENT #ifdef HAVE_LIBRETRO_MANAGEMENT