From d60b292ef1b4f3a421379b160fa68b9f498e19ef Mon Sep 17 00:00:00 2001 From: raven02 Date: Fri, 15 Jul 2016 00:28:26 +0800 Subject: [PATCH] Modules: savedata fix (#1910) --- rpcs3/Emu/Cell/Modules/cellSaveData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellSaveData.cpp b/rpcs3/Emu/Cell/Modules/cellSaveData.cpp index b55023b667..313a2ac90f 100644 --- a/rpcs3/Emu/Cell/Modules/cellSaveData.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSaveData.cpp @@ -78,7 +78,7 @@ static never_inline s32 savedata_op(PPUThread& ppu, u32 operation, u32 version, for (const auto& entry : fs::dir(base_dir)) { - if (entry.is_directory) + if (!entry.is_directory) { continue; }