mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-03 10:13:11 +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)
|
||||
return 1;
|
||||
|
||||
if (string_is_equal_fast(name, ".", 1) || string_is_equal_fast(name, "..", 2))
|
||||
if (!strcmp(name, ".") || !strcmp(name, ".."))
|
||||
return 1;
|
||||
|
||||
if (!is_dir && ext_list &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user