mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(paths.c) Style nit
This commit is contained in:
parent
def9210cdc
commit
dcd5cb2602
1 changed files with 0 additions and 4 deletions
4
paths.c
4
paths.c
|
@ -95,7 +95,6 @@ void path_set_redirect(void)
|
|||
/* If path doesn't exist, try to create it,
|
||||
* if everything fails revert to the original path. */
|
||||
if (!path_is_directory(new_savefile_dir))
|
||||
{
|
||||
if (!path_mkdir(new_savefile_dir))
|
||||
{
|
||||
RARCH_LOG("%s %s\n",
|
||||
|
@ -104,7 +103,6 @@ void path_set_redirect(void)
|
|||
|
||||
strlcpy(new_savefile_dir, old_savefile_dir, path_size);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* per-core states: append the library_name to the save location */
|
||||
|
@ -120,7 +118,6 @@ void path_set_redirect(void)
|
|||
/* If path doesn't exist, try to create it.
|
||||
* If everything fails, revert to the original path. */
|
||||
if (!path_is_directory(new_savestate_dir))
|
||||
{
|
||||
if (!path_mkdir(new_savestate_dir))
|
||||
{
|
||||
RARCH_LOG("%s %s\n",
|
||||
|
@ -130,7 +127,6 @@ void path_set_redirect(void)
|
|||
old_savestate_dir,
|
||||
path_size);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue