mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
gl_shader_decompiler: Fix typo with ISCADD instruction.
This commit is contained in:
parent
c23c30c76f
commit
799e632ccb
1 changed files with 1 additions and 1 deletions
|
@ -927,7 +927,7 @@ private:
|
||||||
if (instr.is_b_gpr) {
|
if (instr.is_b_gpr) {
|
||||||
op_b += regs.GetRegisterAsInteger(instr.gpr20);
|
op_b += regs.GetRegisterAsInteger(instr.gpr20);
|
||||||
} else {
|
} else {
|
||||||
op_b += regs.GetUniform(instr.uniform, instr.gpr0);
|
op_b += regs.GetUniform(instr.uniform, GLSLRegister::Type::Integer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue