mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-08 11:43:14 +00:00
- Several SaveData functions. Dysmantle and we are doomed should save and load now.
This commit is contained in:
parent
3875c00281
commit
0ecc54032c
7 changed files with 488 additions and 92 deletions
|
@ -227,7 +227,8 @@ int PS4_SYSV_ABI sceKernelMkdir(const char* path, u16 mode) {
|
|||
return SCE_KERNEL_ERROR_EEXIST;
|
||||
}
|
||||
|
||||
if (!std::filesystem::create_directory(dir_name)) {
|
||||
//CUSA02456: path = /aotl after sceSaveDataMount(mode = 1)
|
||||
if (dir_name.empty() || !std::filesystem::create_directory(dir_name)) {
|
||||
return SCE_KERNEL_ERROR_EIO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue