diff options
| author | 2021-01-31 01:05:02 -0800 | |
|---|---|---|
| committer | 2021-02-05 14:00:36 -0800 | |
| commit | e9446d232f74c6df695ad643bd6f89d5d3e029c0 (patch) | |
| tree | 49b03d44a5efd9f8121bb4abc967f296d689c859 /src | |
| parent | common: common_funcs: Add R_UNLESS_NOLOG for scenarios that should not log. (diff) | |
| download | yuzu-e9446d232f74c6df695ad643bd6f89d5d3e029c0.tar.gz yuzu-e9446d232f74c6df695ad643bd6f89d5d3e029c0.tar.xz yuzu-e9446d232f74c6df695ad643bd6f89d5d3e029c0.zip | |
hle: kernel: KAddressArbiter: Use R_UNLESS_NOLOG where applicable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/k_address_arbiter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_address_arbiter.cpp b/src/core/hle/kernel/k_address_arbiter.cpp index 1685d25bb..9309376cc 100644 --- a/src/core/hle/kernel/k_address_arbiter.cpp +++ b/src/core/hle/kernel/k_address_arbiter.cpp | |||
| @@ -211,7 +211,7 @@ ResultCode KAddressArbiter::SignalAndModifyByWaitingCountIfEqual(VAddr addr, s32 | |||
| 211 | } | 211 | } |
| 212 | 212 | ||
| 213 | R_UNLESS(succeeded, Svc::ResultInvalidCurrentMemory); | 213 | R_UNLESS(succeeded, Svc::ResultInvalidCurrentMemory); |
| 214 | R_UNLESS(user_value == value, Svc::ResultInvalidState); | 214 | R_UNLESS_NOLOG(user_value == value, Svc::ResultInvalidState); |
| 215 | 215 | ||
| 216 | while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) && | 216 | while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) && |
| 217 | (it->GetAddressArbiterKey() == addr)) { | 217 | (it->GetAddressArbiterKey() == addr)) { |