summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2018-12-18 04:28:50 -0300
committerGravatar ReinUsesLisp2018-12-18 04:28:50 -0300
commitef061481c5038aa9103764c351c041c5afa62f33 (patch)
tree151f16a3a2749d0163ef2296bdc25431f83d8a60 /src
parentMerge pull request #1903 from heapo/fmul_postfactor (diff)
downloadyuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.gz
yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.xz
yuzu-ef061481c5038aa9103764c351c041c5afa62f33.zip
shader_bytecode: Fixup half float's operator B encoding
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 5198cd268..2efeb6e1a 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -609,7 +609,7 @@ union Instruction {
609 609
610 BitField<31, 1, u64> negate_b; 610 BitField<31, 1, u64> negate_b;
611 BitField<30, 1, u64> abs_b; 611 BitField<30, 1, u64> abs_b;
612 BitField<47, 2, HalfType> type_b; 612 BitField<28, 2, HalfType> type_b;
613 613
614 BitField<35, 2, HalfType> type_c; 614 BitField<35, 2, HalfType> type_c;
615 } alu_half; 615 } alu_half;