mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-28 19:20:36 +00:00
Fix cellSysCacheMount error checking
This commit is contained in:
parent
24699f0f96
commit
4db79c458d
@ -324,10 +324,13 @@ s32 cellSysCacheMount(vm::ptr<CellSysCacheParam> param)
|
||||
strcpy_trunc(param->getCachePath, cache_path);
|
||||
|
||||
// TODO: implement (what?)
|
||||
fs::create_dir(vfs::get(cache_path));
|
||||
fxm::make_always<CellSysCacheParam>(*param);
|
||||
if (!fs::create_dir(vfs::get(cache_path)))
|
||||
{
|
||||
return CELL_SYSCACHE_RET_OK_RELAYED;
|
||||
}
|
||||
|
||||
return CELL_SYSCACHE_RET_OK_RELAYED;
|
||||
return CELL_SYSCACHE_RET_OK_CLEARED;
|
||||
}
|
||||
|
||||
bool g_bgm_playback_enabled = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user