1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-20 15:40:44 +00:00

Fix: iOS cannot go to parent directory.

This commit is contained in:
Yongwoon Cho 2015-11-05 05:45:01 +09:00
parent 9ba6877772
commit ca9b7c141b

@ -381,7 +381,7 @@ void fill_pathname_basedir(char *out_dir,
void fill_pathname_parent_dir(char *out_dir,
const char *in_dir, size_t size)
{
if (out_dir != in_path)
if (out_dir != in_dir)
retro_assert(strlcpy(out_dir, in_dir, size) < size);
path_parent_dir(out_dir);
}