diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp index 2253297bb6..1e31ee48cb 100644 --- a/Source/Core/DolphinWX/Frame.cpp +++ b/Source/Core/DolphinWX/Frame.cpp @@ -615,8 +615,7 @@ void CFrame::OnClose(wxCloseEvent& event) event.Veto(); } // Tell OnStopped to resubmit the Close event - if (m_confirmStop) - m_bClosing = true; + m_bClosing = true; return; } @@ -1716,6 +1715,7 @@ void CFrame::HandleSignal(wxTimerEvent& event) { if (!s_shutdown_signal_received.TestAndClear()) return; + m_bClosing = true; Close(); }