diff --git a/paths.c b/paths.c index df1497341e..dccf50332d 100644 --- a/paths.c +++ b/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); } - } } } }