From 6cb78682868fd28bfbe55ec1ee55eeb861addc40 Mon Sep 17 00:00:00 2001 From: Alex Harrison Date: Tue, 22 Jul 2025 20:37:01 -0600 Subject: [PATCH] CodeViewWidget: Improve performance by removing unnecessary FillInCallers computation during update --- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index f94b640c41..abbf59c4ce 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -433,8 +433,6 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard) CalculateBranchIndentation(); - m_ppc_symbol_db.FillInCallers(); - repaint(); m_updating = false; }