diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2016-09-08 20:10:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-08 20:10:19 -0500 |
| commit | 145ebd34e28f8681a6ef0e60e8f7b7f622cef0a8 (patch) | |
| tree | e3ef8d600d14c8a2c09a303a503ad9fd554ea567 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | 6023b7b5e5b001a938e1128c8e15c959e70585e9 (diff) | |
| parent | 7ad1f340df9e3ec66c9f116606ec27f2b910068e (diff) | |
Merge pull request #4126 from aldelaro5/debugger-pause-button-fix
Fix the pause/play toolbar button not updating when reaching a breakp…
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index beda6a442b..beb343318d 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -150,6 +150,8 @@ void CCodeWindow::OnHostMessage(wxCommandEvent& event) Update(); if (codeview) codeview->Center(PC); + if (CPU::IsStepping()) + Parent->UpdateGUI(); if (m_RegisterWindow) m_RegisterWindow->NotifyUpdate(); if (m_WatchWindow) |
