mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-29 23:54:26 +01:00
gl_shader_decompiler: Fix un/signed mismatch with SHL.
This commit is contained in:
parent
5fb99e6a16
commit
566f97b580
@ -895,7 +895,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
case OpCode::Type::Shift: {
|
case OpCode::Type::Shift: {
|
||||||
std::string op_a = regs.GetRegisterAsInteger(instr.gpr8, 0, false);
|
std::string op_a = regs.GetRegisterAsInteger(instr.gpr8, 0, true);
|
||||||
std::string op_b;
|
std::string op_b;
|
||||||
|
|
||||||
if (instr.is_b_imm) {
|
if (instr.is_b_imm) {
|
||||||
|
Loading…
Reference in New Issue
Block a user