[noexcept] Don't throw on unimplemented HLE functions.

Getting rid of exceptions.
This commit is contained in:
Nekotekina 2019-09-02 14:41:57 +03:00
parent 0dfe85dc14
commit a5be410e3f
26 changed files with 550 additions and 284 deletions

View file

@ -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)