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
fuse-libretro
Commits
bc92f852
Commit
bc92f852
authored
Sep 07, 2016
by
frangarcj
Committed by
Thomas Conté
Apr 19, 2021
Browse files
(VITA) Fix stat
parent
21c8ffb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
fuse/settings.c
View file @
bc92f852
...
...
@@ -2741,6 +2741,9 @@ read_config_file( settings_info *settings )
/* See if the file exists; if doesn't, it's not a problem */
if
(
stat
(
path
,
&
stat_info
)
)
{
#if defined(VITA)
return
0
;
#else
if
(
errno
==
ENOENT
)
{
return
0
;
}
else
{
...
...
@@ -2748,6 +2751,7 @@ read_config_file( settings_info *settings )
strerror
(
errno
)
);
return
1
;
}
#endif
}
error
=
utils_read_file
(
path
,
&
file
);
...
...
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