From 5842b90bee7fcd11196ceaeb8e98843095aedcef Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 1 Dec 2022 16:47:32 -0800 Subject: [PATCH] Show JIT blocks widget when selecting 'PPC vs Host' in code widget Before, I just assumed this feature was broken since I didn't know what widget it used. Now, it behaves like show memory and show code elsewhere. --- Source/Core/DolphinQt/Debugger/JITWidget.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Core/DolphinQt/Debugger/JITWidget.cpp b/Source/Core/DolphinQt/Debugger/JITWidget.cpp index 99d4249504..68c39eb662 100644 --- a/Source/Core/DolphinQt/Debugger/JITWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/JITWidget.cpp @@ -123,6 +123,11 @@ void JITWidget::ConnectWidgets() void JITWidget::Compare(u32 address) { m_address = address; + + Settings::Instance().SetJITVisible(true); + raise(); + m_host_asm_widget->setFocus(); + Update(); }