From a317dac0899706342818fb8b5bc238dd422155e7 Mon Sep 17 00:00:00 2001 From: Fiora Date: Sat, 16 Aug 2014 22:25:49 -0700 Subject: [PATCH] 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. --- Source/Core/DolphinWX/Debugger/JitWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinWX/Debugger/JitWindow.cpp b/Source/Core/DolphinWX/Debugger/JitWindow.cpp index 5fbd08c6d8..f63accc1e8 100644 --- a/Source/Core/DolphinWX/Debugger/JitWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/JitWindow.cpp @@ -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;