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
|
|
@ -5,42 +5,50 @@ LOG_CHANNEL(cellRemotePlay);
|
|||
|
||||
s32 cellRemotePlayGetStatus()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayGetStatus()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlaySetComparativeVolume()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlaySetComparativeVolume()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetPeerInfo()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayGetPeerInfo()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetSharedMemory()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayGetSharedMemory()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayEncryptAllData()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayEncryptAllData()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayStopPeerVideoOut()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayStopPeerVideoOut()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayGetComparativeVolume()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayGetComparativeVolume()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellRemotePlayBreak()
|
||||
{
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
cellRemotePlay.todo("cellRemotePlayBreak()");
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue