diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-02-20 02:56:04 +0100 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-02-20 02:56:04 +0100 |
| commit | ef1520c2c686172e380fdc9c58a01299216b55b0 (patch) | |
| tree | b783e9bbf77d37052aec1c0ca7f72d5916bf6c50 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | ae7fc074f87a38cbeb570424693cf2635d7ada71 (diff) | |
Qt/CodeViewWidget: Don't try to pause emulator in Update() if we happen to be on a breakpoint.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 15c76289b4..7b976e3cc1 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -295,9 +295,6 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard) u32 pc = PowerPC::ppcState.pc; - if (Core::GetState() != Core::State::Paused && PowerPC::debug_interface.IsBreakpoint(pc)) - Core::SetState(Core::State::Paused); - const bool dark_theme = qApp->palette().color(QPalette::Base).valueF() < 0.5; m_branches.clear(); |
