Merge pull request #6292 from gyroninja/master

Fixed SIGSEGV in PPCDebugInterface When Reading Too Early in The Boot Process
This commit is contained in:
Léo Lam 2018-01-13 14:34:38 +01:00 committed by GitHub
commit 27b6a2e634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)