summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
diff options
context:
space:
mode:
authormitaclaw <140017135+mitaclaw@users.noreply.github.com>2024-09-20 18:39:20 -0700
committermitaclaw <140017135+mitaclaw@users.noreply.github.com>2024-09-20 18:39:20 -0700
commit4f821f43323b0ab23c965941b06d1f8337fc3367 (patch)
tree245d4dea1c32fe6101cd34afffc699cd76a14a86 /Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
parent7c2a39706e84d112cf28883a64afe43aa6f0b916 (diff)
BreakpointWidget: Update when `Host::PPCSymbolsChanged`
Otherwise, outdated symbol names will remain.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
index 0a5a21c660..68df96ecab 100644
--- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
@@ -131,6 +131,7 @@ BreakpointWidget::BreakpointWidget(QWidget* parent)
Update();
});
+ connect(Host::GetInstance(), &Host::PPCSymbolsChanged, this, &BreakpointWidget::Update);
connect(Host::GetInstance(), &Host::PPCBreakpointsChanged, this, &BreakpointWidget::Update);
UpdateIcons();