mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +00:00
Prevent stopping emulation before fully booting. This can sometimes cause dolphin to crash.
This commit is contained in:
parent
da560ecefc
commit
89d324786a
1 changed files with 2 additions and 0 deletions
|
@ -1010,6 +1010,8 @@ void CFrame::DoPause()
|
||||||
// Stop the emulation
|
// Stop the emulation
|
||||||
void CFrame::DoStop()
|
void CFrame::DoStop()
|
||||||
{
|
{
|
||||||
|
if (!Core::IsRunningAndStarted())
|
||||||
|
return;
|
||||||
if (confirmStop)
|
if (confirmStop)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue