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:
Fiora 2014-08-16 22:25:49 -07:00
parent d5d5580424
commit a317dac089

View file

@ -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;