JIT: fix JIT with conditional continue off, again

This commit is contained in:
Fiora 2014-09-14 00:12:27 -07:00
parent 84a564a304
commit 9d2b2cae4a
1 changed files with 4 additions and 0 deletions

View File

@ -463,7 +463,11 @@ void Jit64::cmpXX(UGeckoInstruction inst)
SetJumpTarget(pDontBranch);
if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE))
{
gpr.Flush();
fpr.Flush();
WriteExit(js.next_compilerPC + 4);
}
}
}