From 9628e229163b590459cf20c538cee1c0c27a5105 Mon Sep 17 00:00:00 2001 From: gyroninja Date: Sat, 6 Jan 2018 17:27:15 -0800 Subject: [PATCH] Changed PPCDebugInterace to check memory only after the emulator has finished starting --- Source/Core/Core/Debugger/PPCDebugInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index ec54e0c74d..42694a09fe 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -88,7 +88,7 @@ unsigned int PPCDebugInterface::ReadInstruction(unsigned int address) bool PPCDebugInterface::IsAlive() { - return Core::IsRunning(); + return Core::IsRunningAndStarted(); } bool PPCDebugInterface::IsBreakpoint(unsigned int address)