From 6d113558d7812dae05ede3cb3cd5729d0c9406dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Thu, 26 Nov 2015 21:30:44 -0300 Subject: [PATCH] (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. --- dir_list_special.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dir_list_special.c b/dir_list_special.c index 15a72988d8..71bd76ed2e 100644 --- a/dir_list_special.c +++ b/dir_list_special.c @@ -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); }