Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prevent stopping emulation before fully booting. This can sometimes c…
…ause dolphin to crash.
  • Loading branch information
RachelBryk committed Aug 16, 2013
1 parent da560ec commit 89d3247
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinWX/Src/FrameTools.cpp
Expand Up @@ -1010,6 +1010,8 @@ void CFrame::DoPause()
// Stop the emulation
void CFrame::DoStop()
{
if (!Core::IsRunningAndStarted())
return;
if (confirmStop)
return;

Expand Down

0 comments on commit 89d3247

Please sign in to comment.