summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-06 05:53:38 -0300
committerGravatar ameerj2021-07-22 21:51:26 -0400
commit56b92bd89cdf28f51277d6fc68115b2cd4b18864 (patch)
tree6b427e652231896a5f5d5214f75fea8ee9ffeb54 /src/shader_recompiler/frontend
parentshader: Fix TextureGrad (diff)
downloadyuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.gz
yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.xz
yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.zip
shader: Fix F2I
Diffstat (limited to 'src/shader_recompiler/frontend')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
index ef55b9c75..21ae92be1 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
@@ -37,7 +37,7 @@ union F2I {
37 BitField<10, 2, SrcFormat> src_format; 37 BitField<10, 2, SrcFormat> src_format;
38 BitField<12, 1, u64> is_signed; 38 BitField<12, 1, u64> is_signed;
39 BitField<39, 2, Rounding> rounding; 39 BitField<39, 2, Rounding> rounding;
40 BitField<49, 1, u64> half; 40 BitField<41, 1, u64> half;
41 BitField<44, 1, u64> ftz; 41 BitField<44, 1, u64> ftz;
42 BitField<45, 1, u64> abs; 42 BitField<45, 1, u64> abs;
43 BitField<47, 1, u64> cc; 43 BitField<47, 1, u64> cc;