diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-04-06 10:53:38 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:26 +0200 |
commit | 56b92bd89cdf28f51277d6fc68115b2cd4b18864 (patch) | |
tree | 6b427e652231896a5f5d5214f75fea8ee9ffeb54 /src/shader_recompiler/frontend/maxwell | |
parent | shader: Fix TextureGrad (diff) | |
download | yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.gz yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.bz2 yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.lz yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.xz yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.tar.zst yuzu-56b92bd89cdf28f51277d6fc68115b2cd4b18864.zip |
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp | 2 |
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 { BitField<10, 2, SrcFormat> src_format; BitField<12, 1, u64> is_signed; BitField<39, 2, Rounding> rounding; - BitField<49, 1, u64> half; + BitField<41, 1, u64> half; BitField<44, 1, u64> ftz; BitField<45, 1, u64> abs; BitField<47, 1, u64> cc; |