htc: fix event wait loops for rpc clients

This commit is contained in:
Michael Scire 2021-02-12 07:03:55 -08:00 committed by SciresM
parent f28a410ba0
commit 99a38dce32
4 changed files with 19 additions and 20 deletions

View file

@ -77,7 +77,10 @@ namespace ams::htcs::impl {
}
/* Start the rpc client. */
if (R_FAILED(m_rpc_client->Start())) {
const Result start_result = m_rpc_client->Start();
if (R_FAILED(start_result)) {
/* DEBUG */
R_ABORT_UNLESS(start_result);
continue;
}