mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
[noexcept] Don't throw on unimplemented HLE functions.
Getting rid of exceptions.
This commit is contained in:
parent
0dfe85dc14
commit
a5be410e3f
26 changed files with 550 additions and 284 deletions
|
|
@ -997,17 +997,20 @@ s32 cellFsAioCancel(s32 id)
|
|||
|
||||
s32 cellFsArcadeHddSerialNumber()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented: %s", __func__);
|
||||
cellFs.todo("cellFsArcadeHddSerialNumber()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellFsRegisterConversionCallback()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented: %s", __func__);
|
||||
cellFs.todo("cellFsRegisterConversionCallback()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellFsUnregisterL10nCallbacks()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented: %s", __func__);
|
||||
cellFs.todo("cellFsUnregisterL10nCallbacks()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellFs)("sys_fs", []()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue