1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix new directories rights

This commit is contained in:
Mathieu Schroeter 2017-08-26 21:23:11 +02:00
parent 423f4691a4
commit cfdd094d29

View File

@ -146,7 +146,7 @@ AddUserPath (std::string & pFilename)
path += pFilename;
last = path[pos];
path[pos] = 0;
mkdir (path.c_str (), 755);
mkdir (path.c_str (), 0755);
path[pos] = last;
}
else