mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
hle: Add more missing functions
This commit is contained in:
parent
7625f7df11
commit
f30af3ccd2
24 changed files with 406 additions and 7 deletions
|
|
@ -550,6 +550,12 @@ error_code cellFsSdataOpenWithVersion()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellFsSetAttribute()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellFs);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellFsSetDefaultContainer(u32 id, u32 total_limit)
|
||||
{
|
||||
cellFs.todo("cellFsSetDefaultContainer(id=0x%x, total_limit=%u)", id, total_limit);
|
||||
|
|
@ -1064,6 +1070,7 @@ DECLARE(ppu_module_manager::cellFs)("sys_fs", []()
|
|||
REG_FUNC(sys_fs, cellFsSdataOpen);
|
||||
REG_FUNC(sys_fs, cellFsSdataOpenByFd);
|
||||
REG_FUNC(sys_fs, cellFsSdataOpenWithVersion);
|
||||
REG_FUNC(sys_fs, cellFsSetAttribute);
|
||||
REG_FUNC(sys_fs, cellFsSetDefaultContainer);
|
||||
REG_FUNC(sys_fs, cellFsSetDiscReadRetrySetting);
|
||||
REG_FUNC(sys_fs, cellFsSetIoBuffer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue