mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-19 20:32:37 +00:00
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:
parent
85ea47b3d2
commit
77586e678c
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user