Skip to content
Permalink
Browse files
Merge pull request #6660 from leoetlino/pause
Qt/Debugger: Don't pause when already paused
  • Loading branch information
lioncash committed Apr 17, 2018
2 parents e04592e + 69ad949 commit b19d77a
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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++)

0 comments on commit b19d77a

Please sign in to comment.