diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-18 08:28:50 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-18 08:28:50 +0100 |
commit | ef061481c5038aa9103764c351c041c5afa62f33 (patch) | |
tree | 151f16a3a2749d0163ef2296bdc25431f83d8a60 /src | |
parent | Merge pull request #1903 from heapo/fmul_postfactor (diff) | |
download | yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.gz yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.bz2 yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.lz yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.xz yuzu-ef061481c5038aa9103764c351c041c5afa62f33.tar.zst yuzu-ef061481c5038aa9103764c351c041c5afa62f33.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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 { BitField<31, 1, u64> negate_b; BitField<30, 1, u64> abs_b; - BitField<47, 2, HalfType> type_b; + BitField<28, 2, HalfType> type_b; BitField<35, 2, HalfType> type_c; } alu_half; |