From 95ce8602659576ec9beb0c61f0f1db73fedfc841 Mon Sep 17 00:00:00 2001 From: degasus Date: Sat, 12 Aug 2017 21:10:16 +0200 Subject: [PATCH] DolphinWX: Enable branch following in the JIT debug interface. --- 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 a62d1ba2f2..bf2eab365c 100644 --- a/Source/Core/DolphinWX/Debugger/JitWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/JitWindow.cpp @@ -87,6 +87,7 @@ void CJitWindow::Compare(u32 em_address) PPCAnalyst::CodeBlock code_block; PPCAnalyst::PPCAnalyzer analyzer; analyzer.SetOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE); + analyzer.SetOption(PPCAnalyst::PPCAnalyzer::OPTION_BRANCH_FOLLOW); code_block.m_stats = &st; code_block.m_gpa = &gpa;