From 294df41b86c0978f6ae0845a4f61ed5997e05a5f Mon Sep 17 00:00:00 2001
From: ReinUsesLisp <reinuseslisp@airmail.cc>
Date: Tue, 18 Dec 2018 20:51:05 -0300
Subject: [PATCH] shader_bytecode: Fixup encoding

---
 src/video_core/engines/shader_bytecode.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index e53c77f2b..e62b66acd 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -609,7 +609,7 @@ union Instruction {
 
         BitField<31, 1, u64> negate_b;
         BitField<30, 1, u64> abs_b;
-        BitField<28, 2, HalfType> type_b;
+        BitField<28 , 2, HalfType> type_b;
 
         BitField<35, 2, HalfType> type_c;
     } alu_half;