From 20055e80de60a89d0ecd00114079ad76420ae022 Mon Sep 17 00:00:00 2001 From: gameblabla Date: Tue, 5 Mar 2024 11:05:21 +0100 Subject: [PATCH] shader_recompiler: fix copy-paste error by liamwhite --- frontend/maxwell/translate/impl/integer_funnel_shift.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/maxwell/translate/impl/integer_funnel_shift.cpp b/frontend/maxwell/translate/impl/integer_funnel_shift.cpp index 9860bd1..5fc05ba 100644 --- a/frontend/maxwell/translate/impl/integer_funnel_shift.cpp +++ b/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 union { u64 insn; BitField<0, 8, IR::Reg> dest_reg; - BitField<0, 8, IR::Reg> lo_bits_reg; + BitField<8, 8, IR::Reg> lo_bits_reg; BitField<37, 2, MaxShift> max_shift; BitField<47, 1, u64> cc; BitField<48, 2, u64> x_mode;