summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp')
-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()