(paths.c) Style nit

This commit is contained in:
twinaphex 2019-04-22 04:05:58 +02:00
parent def9210cdc
commit dcd5cb2602

View file

@ -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);
}
}
}
}
}