mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Fix hidden directories/files no longer showing up
This commit is contained in:
parent
0742ebec21
commit
1ac44d8eca
@ -124,7 +124,7 @@ static int parse_dir_entry(const char *name, char *file_path,
|
|||||||
if (!include_dirs && is_dir)
|
if (!include_dirs && is_dir)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (string_is_equal_fast(name, ".", 1) || string_is_equal_fast(name, "..", 2))
|
if (!strcmp(name, ".") || !strcmp(name, ".."))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (!is_dir && ext_list &&
|
if (!is_dir && ext_list &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user