fix SonarPen for iOS

This commit is contained in:
2019-10-14 12:50:41 +02:00
parent 258f6a6aff
commit 3c99653c09
7 changed files with 60 additions and 15 deletions

View File

@@ -145,7 +145,8 @@ bool Asset::create_dir(const std::string& path)
return android_create_dir(path);
#elif __IOS__ || __OSX__
return apple_create_dir(path);
else
#else
// TODO: implement for linux and web
return false;
#endif
}