Merge pull request #1082 from FioraAeterna/fixccagain

JIT: fix JIT with conditional continue off, again
This commit is contained in:
Ryan Houdek 2014-09-14 03:22:03 -05:00
commit 1f7871f9e2

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);
}
}
}