mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
JIT: fix JIT with conditional continue off, again
This commit is contained in:
parent
84a564a304
commit
9d2b2cae4a
1 changed files with 4 additions and 0 deletions
|
@ -463,7 +463,11 @@ void Jit64::cmpXX(UGeckoInstruction inst)
|
||||||
SetJumpTarget(pDontBranch);
|
SetJumpTarget(pDontBranch);
|
||||||
|
|
||||||
if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE))
|
if (!analyzer.HasOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE))
|
||||||
|
{
|
||||||
|
gpr.Flush();
|
||||||
|
fpr.Flush();
|
||||||
WriteExit(js.next_compilerPC + 4);
|
WriteExit(js.next_compilerPC + 4);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue