From 52213c46d584b074e89df84164d029c2fdadf494 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 17 Sep 2015 20:25:31 +0200 Subject: [PATCH] (PSP/Vita) Set mode to 0777 --- libretro-common/file/file_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 3a8c43e7b3..bc116f45f0 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -557,7 +557,7 @@ static bool path_mkdir_norecurse(const char *dir) #elif defined(IOS) ret = mkdir(dir, 0755); #elif defined(VITA) || defined(PSP) - ret = sceIoMkdir(dir, 0755); + ret = sceIoMkdir(dir, 0777); #else ret = mkdir(dir, 0750); #endif