summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authormitaclaw <140017135+mitaclaw@users.noreply.github.com>2024-10-24 18:01:05 -0700
committermitaclaw <140017135+mitaclaw@users.noreply.github.com>2024-10-24 18:10:52 -0700
commit0371b74ebf48ca4eafdb4a15731d61978341b647 (patch)
tree7d5038f9895b8f928e678ada6db176860d0142e1 /Source/Core
parent5a95951751cf5db74292800165dc22d12ca93f9e (diff)
JitBlockTableModel: Update For Symbols Too
Flushing efficiency down the drain because I wrote unsafe code to achieve it... I hope I can recover this.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp b/Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp
index cc784ca144..b9a003779f 100644
--- a/Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp
+++ b/Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp
@@ -187,7 +187,9 @@ void JitBlockTableModel::OnUpdateDisasmDialog()
void JitBlockTableModel::OnPPCSymbolsUpdated()
{
- UpdateSymbols();
+ // Previously, this was only a call to `UpdateSymbols`, but HLE patch engine code can
+ // invalidate JIT blocks when specific symbols are loaded. What can be done about it?
+ Update(Core::GetState(m_system));
}
void JitBlockTableModel::OnPPCBreakpointsChanged()