mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 07:19:58 +00:00
hle: kernel: KAddressArbiter: Use R_UNLESS_NOLOG where applicable.
This commit is contained in:
parent
4577dcd5f9
commit
e9446d232f
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ ResultCode KAddressArbiter::SignalAndModifyByWaitingCountIfEqual(VAddr addr, s32
|
||||||
}
|
}
|
||||||
|
|
||||||
R_UNLESS(succeeded, Svc::ResultInvalidCurrentMemory);
|
R_UNLESS(succeeded, Svc::ResultInvalidCurrentMemory);
|
||||||
R_UNLESS(user_value == value, Svc::ResultInvalidState);
|
R_UNLESS_NOLOG(user_value == value, Svc::ResultInvalidState);
|
||||||
|
|
||||||
while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) &&
|
while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) &&
|
||||||
(it->GetAddressArbiterKey() == addr)) {
|
(it->GetAddressArbiterKey() == addr)) {
|
||||||
|
|
Loading…
Reference in a new issue