JitBlockTableModel: Update For Symbols Too

Flushing efficiency down the drain because I wrote unsafe code to achieve it... I hope I can recover this.
This commit is contained in:
mitaclaw 2024-10-24 18:01:05 -07:00
parent 5a95951751
commit 0371b74ebf
1 changed files with 3 additions and 1 deletions

View File

@ -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()