Prevent stopping emulation before fully booting. This can sometimes cause dolphin to crash.

This commit is contained in:
Rachel Bryk 2013-08-16 10:04:08 -04:00
parent da560ecefc
commit 89d324786a
1 changed files with 2 additions and 0 deletions

View File

@ -1010,6 +1010,8 @@ void CFrame::DoPause()
// Stop the emulation
void CFrame::DoStop()
{
if (!Core::IsRunningAndStarted())
return;
if (confirmStop)
return;