diff options
| author | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-03-16 23:05:56 -0700 |
|---|---|---|
| committer | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-03-28 09:57:22 -0700 |
| commit | b52a08d5332949c3b22f8434155cc8095d94df3a (patch) | |
| tree | 7c62fcc63540d0c1bce670b43f96ffe10ef6ca5f /Source/DSPTool | |
| parent | 1efda863e47b690f460f069502a4391b3c7d87c4 (diff) | |
DolphinQt: A Ubiquitous Signal For When Symbols Change
There were three distinct mechanisms for signaling symbol changes in DolphinQt: `Host::NotifyMapLoaded`, `MenuBar::NotifySymbolsUpdated`, and `CodeViewWidget::SymbolsChanged`. The behavior of these signals has been consolidated into the new `Host::PPCSymbolsUpdated` signal, which can be emitted from anywhere in DolphinQt to properly update symbols everywhere in DolphinQt.
Diffstat (limited to 'Source/DSPTool')
| -rw-r--r-- | Source/DSPTool/StubHost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/DSPTool/StubHost.cpp b/Source/DSPTool/StubHost.cpp index 50a27e2d28..d32346a457 100644 --- a/Source/DSPTool/StubHost.cpp +++ b/Source/DSPTool/StubHost.cpp @@ -13,7 +13,7 @@ std::vector<std::string> Host_GetPreferredLocales() { return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } void Host_RefreshDSPDebuggerWindow() |
