diff options
| author | 2023-05-26 00:29:43 -0400 | |
|---|---|---|
| committer | 2023-05-26 00:36:12 -0400 | |
| commit | 13d25063a1cf2173636ea6af4589b4f19565f77f (patch) | |
| tree | 49be0721db1fba38eca087b1200310cd2cd35094 /src/shader_recompiler/frontend/maxwell/translate/impl | |
| parent | Merge pull request #10221 from Kelebek1/partial_dsp_revert (diff) | |
| download | yuzu-13d25063a1cf2173636ea6af4589b4f19565f77f.tar.gz yuzu-13d25063a1cf2173636ea6af4589b4f19565f77f.tar.xz yuzu-13d25063a1cf2173636ea6af4589b4f19565f77f.zip | |
shader_recompiler: fix copy-paste error
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp index 442365a26..c2a0ee6f1 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp | |||
| @@ -30,7 +30,7 @@ void SHF(TranslatorVisitor& v, u64 insn, const IR::U32& shift, const IR::U32& hi | |||
| 30 | union { | 30 | union { |
| 31 | u64 insn; | 31 | u64 insn; |
| 32 | BitField<0, 8, IR::Reg> dest_reg; | 32 | BitField<0, 8, IR::Reg> dest_reg; |
| 33 | BitField<0, 8, IR::Reg> lo_bits_reg; | 33 | BitField<8, 8, IR::Reg> lo_bits_reg; |
| 34 | BitField<37, 2, MaxShift> max_shift; | 34 | BitField<37, 2, MaxShift> max_shift; |
| 35 | BitField<47, 1, u64> cc; | 35 | BitField<47, 1, u64> cc; |
| 36 | BitField<48, 2, u64> x_mode; | 36 | BitField<48, 2, u64> x_mode; |