summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-07-13 01:12:24 +0200
committerPierre Bourdon <delroth@gmail.com>2014-07-13 01:12:24 +0200
commitb2fa0ea3dcbf388739b5290e750d738043597703 (patch)
tree739716544ace73e0924ff32209367e1a6e4d234d /Source
parent99d4ab0b7197c9647932074b54a34ffea1977940 (diff)
parent64801008a0102c4603c23a0d02c9782f057b5858 (diff)
Merge pull request #606 from Armada651/nogui
NoGUI: Add missing call to Core::Shutdown().
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/MainNoGUI.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/MainNoGUI.cpp b/Source/Core/DolphinWX/MainNoGUI.cpp
index 0345e20b2b..6af755329c 100644
--- a/Source/Core/DolphinWX/MainNoGUI.cpp
+++ b/Source/Core/DolphinWX/MainNoGUI.cpp
@@ -389,6 +389,7 @@ int main(int argc, char* argv[])
VideoBackend::ClearList();
SConfig::Shutdown();
LogManager::Shutdown();
+ Core::Shutdown();
return 0;
}