notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
936f164
)
Fix folder creation
author
Francisco Javier Trujillo Mata
<fjtrujy@gmail.com>
Sat, 30 Dec 2023 23:51:49 +0000
(
00:51
+0100)
committer
kub
<derkub@gmail.com>
Sun, 18 Feb 2024 22:30:09 +0000
(23:30 +0100)
platform/common/emu.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/common/emu.c
b/platform/common/emu.c
index
92375ea
..
5e51d93
100644
(file)
--- a/
platform/common/emu.c
+++ b/
platform/common/emu.c
@@
-1243,7
+1243,7
@@
static void mkdir_path(char *path_with_reserve, int pos, const char *name)
strcpy(path_with_reserve + pos, name);
\r
if (plat_is_dir(path_with_reserve))
\r
return;
\r
- if (mkdir(path_with_reserve, 07
77
) < 0)
\r
+ if (mkdir(path_with_reserve, 07
55
) < 0)
\r
lprintf("failed to create: %s\n", path_with_reserve);
\r
}
\r
\r