mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +01:00
cellSaveData: try to address #5415
This commit is contained in:
parent
522f5ea645
commit
f750b4c420
@ -871,7 +871,7 @@ static NEVER_INLINE s32 savedata_op(ppu_thread& ppu, u32 operation, u32 version,
|
||||
if (!psf.empty() && has_modified)
|
||||
{
|
||||
// First, create temporary directory
|
||||
if (fs::create_path(new_path))
|
||||
if (fs::create_dir(new_path) || fs::g_tls_error == fs::error::exist)
|
||||
{
|
||||
fs::remove_all(new_path, false);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user