diff --git a/rpcs3/Emu/Cell/Modules/cellSysutil.cpp b/rpcs3/Emu/Cell/Modules/cellSysutil.cpp index 3c15ae7f97..e6bad74cee 100644 --- a/rpcs3/Emu/Cell/Modules/cellSysutil.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSysutil.cpp @@ -300,7 +300,7 @@ s32 cellSysCacheClear() const std::string& cache_id = param->cacheId; - const std::string& cache_path = "/dev_hdd1/cache/" + cache_id + '/'; + const std::string& cache_path = "/dev_hdd1/cache/" + cache_id; const std::string& dir_path = vfs::get(cache_path); if (!fs::exists(dir_path) || !fs::is_dir(dir_path)) @@ -320,7 +320,7 @@ s32 cellSysCacheMount(vm::ptr param) const std::string& cache_id = param->cacheId; verify(HERE), cache_id.size() < sizeof(param->cacheId); - const std::string& cache_path = "/dev_hdd1/cache/" + cache_id + '/'; + const std::string& cache_path = "/dev_hdd1/cache/" + cache_id; strcpy_trunc(param->getCachePath, cache_path); // TODO: implement (what?)