diff options
| author | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-09-20 18:39:20 -0700 |
|---|---|---|
| committer | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-09-20 18:39:20 -0700 |
| commit | 4f821f43323b0ab23c965941b06d1f8337fc3367 (patch) | |
| tree | 245d4dea1c32fe6101cd34afffc699cd76a14a86 /Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | |
| parent | 7c2a39706e84d112cf28883a64afe43aa6f0b916 (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.cpp | 1 |
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(); |
