mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-17 16:44:22 -04:00
htc: fix event wait loops for rpc clients
This commit is contained in:
parent
f28a410ba0
commit
99a38dce32
4 changed files with 19 additions and 20 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue