mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +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
|
|
@ -436,17 +436,20 @@ s32 _sys_sprintf(ppu_thread& ppu, vm::ptr<char> buffer, vm::cptr<char> fmt, ppu_
|
|||
|
||||
s32 _sys_vprintf()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
sysPrxForUser.todo("_sys_vprintf()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 _sys_vsnprintf()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
sysPrxForUser.todo("_sys_vsnprintf()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 _sys_vsprintf()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
sysPrxForUser.todo("_sys_vsprintf()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
void _sys_qsort(vm::ptr<void> base, u32 nelem, u32 size, vm::ptr<qsortcmp> cmp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue