mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Merge pull request #10459 from liamwhite/shf
shader_recompiler: fix copy-paste error
This commit is contained in:
		@@ -30,7 +30,7 @@ void SHF(TranslatorVisitor& v, u64 insn, const IR::U32& shift, const IR::U32& hi
 | 
				
			|||||||
    union {
 | 
					    union {
 | 
				
			||||||
        u64 insn;
 | 
					        u64 insn;
 | 
				
			||||||
        BitField<0, 8, IR::Reg> dest_reg;
 | 
					        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<37, 2, MaxShift> max_shift;
 | 
				
			||||||
        BitField<47, 1, u64> cc;
 | 
					        BitField<47, 1, u64> cc;
 | 
				
			||||||
        BitField<48, 2, u64> x_mode;
 | 
					        BitField<48, 2, u64> x_mode;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user