Merge pull request #2344 from lioncash/result

hle/result: Remove unnecessary bitfield entry for ResultCode
This commit is contained in:
bunnei 2019-04-05 23:34:42 -04:00 committed by GitHub
commit 150a3c0890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -119,10 +119,6 @@ union ResultCode {
BitField<0, 9, ErrorModule> module;
BitField<9, 13, u32> description;
// The last bit of `level` is checked by apps and the kernel to determine if a result code is an
// error
BitField<31, 1, u32> is_error;
constexpr explicit ResultCode(u32 raw) : raw(raw) {}
constexpr ResultCode(ErrorModule module_, u32 description_)