diff --git a/src/platform.cpp b/src/platform.cpp index ea799a96f72..01065026734 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -157,6 +157,13 @@ bool Platform::File::MakeDirectory(bool follow_symlinks) const { } } +#if defined(__WIIU__) + if (cur_path == "fs:/vol" || cur_path == "/vol") { + // /vol is part of the path but checking for existance fails + continue; + } +#endif + File cf(cur_path); if (cf.IsDirectory(follow_symlinks)) { continue;