1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

(dir_list_special.c) Fix content directory scanning

dir_list_new_special() only considered files that matched the reported
supported extensions and thus users without zip-loading cores could not
successfuly scan a folder full of zip-compressed content.
This commit is contained in:
Higor Eurípedes 2015-11-26 21:30:44 -03:00
parent daeb8cacaf
commit 6d113558d7

View File

@ -61,5 +61,5 @@ struct string_list *dir_list_new_special(const char *input_dir, enum dir_list_ty
return NULL;
}
return dir_list_new(dir, exts, include_dirs, false);
return dir_list_new(dir, exts, include_dirs, type == DIR_LIST_CORE_INFO);
}