diff --git a/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp index 1130ca7e7b..b04766f814 100644 --- a/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt2/Debugger/CodeViewWidget.cpp @@ -98,7 +98,7 @@ void CodeViewWidget::Update() u32 pc = PowerPC::ppcState.pc; - if (PowerPC::debug_interface.IsBreakpoint(pc)) + if (Core::GetState() != Core::State::Paused && PowerPC::debug_interface.IsBreakpoint(pc)) Core::SetState(Core::State::Paused); for (int i = 0; i < rowCount(); i++)