CELL_OK cleanup

This commit is contained in:
Nekotekina 2017-05-15 14:58:32 +03:00
parent 45908b9dd8
commit 7ac64a6725
16 changed files with 66 additions and 85 deletions

View file

@ -791,14 +791,14 @@ s32 cellSaveDataDelete2(u32 container)
{
cellSaveData.todo("cellSaveDataDelete2(container=0x%x)", container);
return CELL_SAVEDATA_RET_CANCEL;
return CELL_CANCEL;
}
s32 cellSaveDataDelete(u32 container)
{
cellSaveData.todo("cellSaveDataDelete(container=0x%x)", container);
return CELL_SAVEDATA_RET_CANCEL;
return CELL_CANCEL;
}
s32 cellSaveDataFixedDelete(ppu_thread& ppu, PSetList setList, PSetBuf setBuf, PFuncFixed funcFixed, PFuncDone funcDone, u32 container, vm::ptr<void> userdata)
@ -948,7 +948,7 @@ s32 cellSaveDataGetListItem(vm::cptr<char> dirName, vm::ptr<CellSaveDataDirStat>
strcpy_trunc(sysFileParam->detail, psf.at("DETAIL").as_string());
}
return CELL_SAVEDATA_RET_OK;
return CELL_OK;
}
s32 cellSaveDataUserListDelete(ppu_thread& ppu, u32 userId, PSetList setList, PSetBuf setBuf, PFuncList funcList, PFuncDone funcDone, u32 container, vm::ptr<void> userdata)