Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
tyrquake
Commits
f13e368e
Commit
f13e368e
authored
Feb 22, 2018
by
Libretro-Admin
Browse files
Use mkdir_norecurse in libretro.c
parent
1fb98d88
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/libretro.c
View file @
f13e368e
...
...
@@ -275,13 +275,7 @@ int Sys_FileTime(const char *path)
void
Sys_mkdir
(
const
char
*
path
)
{
#if defined(PSP) || defined(VITA)
sceIoMkdir
(
path
,
0777
);
#elif defined(_WIN32)
mkdir
(
path
);
#else
mkdir
(
path
,
0777
);
#endif
mkdir_norecurse
(
path
);
}
void
Sys_DebugLog
(
const
char
*
file
,
const
char
*
fmt
,
...)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment