Correct permissions on Blackberry.

The settings I originally tested it with and found to be working. Sorry for changing it.
This commit is contained in:
Sacha 2013-05-16 23:11:58 +10:00
parent 85ea47b3d2
commit 77586e678c

View File

@ -178,7 +178,7 @@ bool CreateDir(const std::string &path)
return false;
#else
#ifdef BLACKBERRY
if (mkdir(path.c_str(), 0765) == 0)
if (mkdir(path.c_str(), 0775) == 0)
#else
if (mkdir(path.c_str(), 0755) == 0)
#endif