mirror of https://github.com/PCSX2/pcsx2.git
Merge a08d8b3add
into 0a0f99dd1b
This commit is contained in:
commit
254cca83cc
|
@ -265,7 +265,8 @@ bool DebugInterface::m_pause_on_entry = false;
|
|||
|
||||
bool DebugInterface::isAlive()
|
||||
{
|
||||
return VMManager::HasValidVM() && g_FrameCount > 0;
|
||||
const VMState state = VMManager::GetState();
|
||||
return (state == VMState::Running || state == VMState::Paused) && g_FrameCount > 0;
|
||||
}
|
||||
|
||||
bool DebugInterface::isCpuPaused()
|
||||
|
|
Loading…
Reference in New Issue