From 24699f0f965ac8d80cabeabb40da014ecd0d2868 Mon Sep 17 00:00:00 2001 From: eladash Date: Wed, 4 Jul 2018 16:58:38 +0300 Subject: [PATCH] Fix cellSysCacheClear --- rpcs3/Emu/Cell/Modules/cellSysutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellSysutil.cpp b/rpcs3/Emu/Cell/Modules/cellSysutil.cpp index e6bad74cee..421aa2469f 100644 --- a/rpcs3/Emu/Cell/Modules/cellSysutil.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSysutil.cpp @@ -308,7 +308,7 @@ s32 cellSysCacheClear() return CELL_SYSCACHE_ERROR_ACCESS_ERROR; } - fs::remove_all(dir_path, true); + fs::remove_all(dir_path, false); return CELL_SYSCACHE_RET_OK_CLEARED; }