From 5dfcf7cf26952daef8c7eeb38fb3114db4beb4d4 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 5 Apr 2019 16:34:31 -0400
Subject: [PATCH] hle/result: Remove unnecessary bitfield entry for ResultCode

This is a hold over from the 3DS error codes in Citra.
---
 src/core/hle/result.h | 4 ----
 1 file changed, 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 {
     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_)