diff options
| author | 2019-04-05 16:34:31 -0400 | |
|---|---|---|
| committer | 2019-04-05 16:34:34 -0400 | |
| commit | 5dfcf7cf26952daef8c7eeb38fb3114db4beb4d4 (patch) | |
| tree | 05897fe4b3ff000973dda1d6901bf64058c945ef /src | |
| parent | Merge pull request #2282 from bunnei/gpu-asynch-v2 (diff) | |
| download | yuzu-5dfcf7cf26952daef8c7eeb38fb3114db4beb4d4.tar.gz yuzu-5dfcf7cf26952daef8c7eeb38fb3114db4beb4d4.tar.xz yuzu-5dfcf7cf26952daef8c7eeb38fb3114db4beb4d4.zip | |
hle/result: Remove unnecessary bitfield entry for ResultCode
This is a hold over from the 3DS error codes in Citra.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/result.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index ab84f5ddc..8a3701151 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h | |||
| @@ -119,10 +119,6 @@ union ResultCode { | |||
| 119 | BitField<0, 9, ErrorModule> module; | 119 | BitField<0, 9, ErrorModule> module; |
| 120 | BitField<9, 13, u32> description; | 120 | BitField<9, 13, u32> description; |
| 121 | 121 | ||
| 122 | // The last bit of `level` is checked by apps and the kernel to determine if a result code is an | ||
| 123 | // error | ||
| 124 | BitField<31, 1, u32> is_error; | ||
| 125 | |||
| 126 | constexpr explicit ResultCode(u32 raw) : raw(raw) {} | 122 | constexpr explicit ResultCode(u32 raw) : raw(raw) {} |
| 127 | 123 | ||
| 128 | constexpr ResultCode(ErrorModule module_, u32 description_) | 124 | constexpr ResultCode(ErrorModule module_, u32 description_) |