From ac79c9060733a5db9703bb39af3224ecc7b5bd7d Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 22 Apr 2018 09:24:13 +1000 Subject: srcclean (nw) --- src/emu/debug/debugcpu.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/emu/debug/debugcpu.cpp') diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp index e2a3469ddb0..71037bb1dc1 100644 --- a/src/emu/debug/debugcpu.cpp +++ b/src/emu/debug/debugcpu.cpp @@ -1829,13 +1829,13 @@ void device_debug::suspend(bool suspend) assert(m_exec != nullptr); if (suspend) { - m_flags |= DEBUG_FLAG_SUSPENDED; - m_exec->suspend(SUSPEND_REASON_HALT, 1); - } + m_flags |= DEBUG_FLAG_SUSPENDED; + m_exec->suspend(SUSPEND_REASON_HALT, 1); + } else { - m_flags &= ~DEBUG_FLAG_SUSPENDED; - m_exec->resume(SUSPEND_REASON_HALT); - } + m_flags &= ~DEBUG_FLAG_SUSPENDED; + m_exec->resume(SUSPEND_REASON_HALT); + } if (&m_device == m_device.machine().debugger().cpu().live_cpu() && suspend) { -- cgit v1.2.3