Compilation fix 4

This commit is contained in:
Nekotekina 2014-08-29 17:06:58 +04:00
parent 851ae920b9
commit 2c8b485ba0
3 changed files with 11 additions and 4 deletions

View file

@ -48,7 +48,7 @@ std::string rPlatform::getConfigDir()
else // Just in case
dir = "./config";
dir = dir + "/rpcs3/";
mkdir(dir.c_str());
mkdir(dir.c_str(), 0777);
#endif
}
return dir;