[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

@ -219,7 +219,8 @@ error_code cellHddGameCheck(ppu_thread& ppu, u32 version, vm::cptr<char> dirName
error_code cellHddGameCheck2()
{
fmt::throw_exception("Unimplemented" HERE);
cellGame.todo("cellHddGameCheck2()");
return CELL_OK;
}
error_code cellHddGameGetSizeKB(vm::ptr<u32> size)