JIT: correctly set skipNext even if conditional-continue is off

Part 2: I missed the other branch-merging case in the first commit.
This commit is contained in:
Fiora 2014-08-14 09:31:35 -07:00
parent 7f3458e957
commit a4b23d80b7
1 changed files with 1 additions and 1 deletions

View File

@ -338,6 +338,7 @@ void Jit64::cmpXX(UGeckoInstruction inst)
if (merge_branch)
{
js.downcountAmount++;
js.skipnext = true;
gpr.Flush();
fpr.Flush();
@ -382,7 +383,6 @@ void Jit64::cmpXX(UGeckoInstruction inst)
{
if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE))
{
js.skipnext = true;
WriteExit(js.next_compilerPC + 4);
}
}