diff options
| author | 2021-05-21 01:06:31 -0400 | |
|---|---|---|
| committer | 2021-06-02 00:39:27 -0400 | |
| commit | a0e4c2e1fc8d3ce33948a0ec6a840960f1ceb484 (patch) | |
| tree | 7d6a0f2189410ff77f9e768704abcfea9ef34f3b /src/core/hle/kernel | |
| parent | general: Replace RESULT_SUCCESS with ResultSuccess (diff) | |
| download | yuzu-a0e4c2e1fc8d3ce33948a0ec6a840960f1ceb484.tar.gz yuzu-a0e4c2e1fc8d3ce33948a0ec6a840960f1ceb484.tar.xz yuzu-a0e4c2e1fc8d3ce33948a0ec6a840960f1ceb484.zip | |
general: Replace RESULT_UNKNOWN with ResultUnknown
Transition to PascalCase for result names.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/k_address_arbiter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_address_arbiter.h b/src/core/hle/kernel/k_address_arbiter.h index 8d379b524..bf8b46665 100644 --- a/src/core/hle/kernel/k_address_arbiter.h +++ b/src/core/hle/kernel/k_address_arbiter.h | |||
| @@ -37,7 +37,7 @@ public: | |||
| 37 | return SignalAndModifyByWaitingCountIfEqual(addr, value, count); | 37 | return SignalAndModifyByWaitingCountIfEqual(addr, value, count); |
| 38 | } | 38 | } |
| 39 | UNREACHABLE(); | 39 | UNREACHABLE(); |
| 40 | return RESULT_UNKNOWN; | 40 | return ResultUnknown; |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | [[nodiscard]] ResultCode WaitForAddress(VAddr addr, Svc::ArbitrationType type, s32 value, | 43 | [[nodiscard]] ResultCode WaitForAddress(VAddr addr, Svc::ArbitrationType type, s32 value, |
| @@ -51,7 +51,7 @@ public: | |||
| 51 | return WaitIfEqual(addr, value, timeout); | 51 | return WaitIfEqual(addr, value, timeout); |
| 52 | } | 52 | } |
| 53 | UNREACHABLE(); | 53 | UNREACHABLE(); |
| 54 | return RESULT_UNKNOWN; | 54 | return ResultUnknown; |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | private: | 57 | private: |