Fixed a bad typo. Why are there different inst.Rc and inst.RC variables? >_>

This commit is contained in:
calc84maniac 2012-01-02 04:00:47 -05:00
parent d6bf166694
commit 8d67354179
1 changed files with 1 additions and 1 deletions

View File

@ -1006,7 +1006,7 @@ void Jit64::subfx(UGeckoInstruction inst)
{ {
s32 i = (s32)gpr.R(b).offset, j = (s32)gpr.R(a).offset; s32 i = (s32)gpr.R(b).offset, j = (s32)gpr.R(a).offset;
gpr.SetImmediate32(d, i - j); gpr.SetImmediate32(d, i - j);
if (inst.RC) if (inst.Rc)
{ {
ComputeRC(gpr.R(d)); ComputeRC(gpr.R(d));
} }