mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Get mkdir working on wiiu (#14490)
== DETAILS Looks like Wii U's mkdir() implementation doesn't like trailing slashes either. Since we already have an implementation to handle this, I just added Wii U to it.
This commit is contained in:
parent
df8571b3ca
commit
c51b1491ef
@ -948,7 +948,7 @@ int retro_vfs_mkdir_impl(const char *dir)
|
||||
int ret = sceIoMkdir(dir, 0777);
|
||||
#elif defined(__QNX__)
|
||||
int ret = mkdir(dir, 0777);
|
||||
#elif defined(GEKKO)
|
||||
#elif defined(GEKKO) || defined(WIIU)
|
||||
/* On GEKKO platforms, mkdir() fails if
|
||||
* the path has a trailing slash. We must
|
||||
* therefore remove it. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user