Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #616 from Armada651/shutdown
Shutdown the Core before other components.
  • Loading branch information
delroth committed Jul 13, 2014
2 parents 0c95fcf + aa24952 commit 4d02675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Main.cpp
Expand Up @@ -453,11 +453,11 @@ void DolphinApp::OnEndSession(wxCloseEvent& event)

int DolphinApp::OnExit()
{
Core::Shutdown();
WiimoteReal::Shutdown();
VideoBackend::ClearList();
SConfig::Shutdown();
LogManager::Shutdown();
Core::Shutdown();

delete m_locale;

Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/MainNoGUI.cpp
Expand Up @@ -385,11 +385,11 @@ int main(int argc, char* argv[])
#endif
}

Core::Shutdown();
WiimoteReal::Shutdown();
VideoBackend::ClearList();
SConfig::Shutdown();
LogManager::Shutdown();
Core::Shutdown();

return 0;
}

0 comments on commit 4d02675

Please sign in to comment.