mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 04:24:56 +00:00
Merge pull request #616 from Armada651/shutdown
Shutdown the Core before other components.
This commit is contained in:
commit
4d02675a8a
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue