mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 20:15:27 +00:00
Fix cache directory
This commit is contained in:
parent
cd59bc3d6d
commit
3b64e0fb3f
1 changed files with 2 additions and 2 deletions
|
@ -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<CellSysCacheParam> 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?)
|
||||
|
|
Loading…
Add table
Reference in a new issue