mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #6660 from leoetlino/pause
Qt/Debugger: Don't pause when already paused
This commit is contained in:
commit
b19d77a3ff
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
|
|
Loading…
Add table
Reference in a new issue