mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12: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
|
@ -93,7 +93,8 @@ s32 sys_get_random_number(vm::ptr<void> addr, u64 size)
|
|||
|
||||
s32 console_getc()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
sysPrxForUser.todo("console_getc()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
void console_putc(char ch)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue