mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Debugger: fix JIT block viewer PPC view
The JIT block compare code didn't set the same options for the PPCAnalyzer as the actual JIT did, which made the PPC side of the JIT block viewer stop at the first branch instead of the end of the block.
This commit is contained in:
parent
d5d5580424
commit
a317dac089
@ -150,6 +150,7 @@ void CJitWindow::Compare(u32 em_address)
|
||||
PPCAnalyst::BlockRegStats fpa;
|
||||
PPCAnalyst::CodeBlock code_block;
|
||||
PPCAnalyst::PPCAnalyzer analyzer;
|
||||
analyzer.SetOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE);
|
||||
|
||||
code_block.m_stats = &st;
|
||||
code_block.m_gpa = &gpa;
|
||||
|
Loading…
Reference in New Issue
Block a user