summaryrefslogtreecommitdiff
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorGravatar polaris-2015-10-11 20:07:58 -0400
committerGravatar polaris-2015-10-11 20:07:58 -0400
commit2b7316a379103edf4d22893e0f4432e6415eabfa (patch)
treefc4f6cc31b7288689726fbe379755a610a854b7f /src/core/system.cpp
parentUse BreakpointAddress struct instead of passing address directly (diff)
downloadyuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.gz
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.xz
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.zip
Remove unnecessary new lines, changed Deinit to Shutdown
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r--src/core/system.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp
index 421fc48a7..7e9c56538 100644
--- a/src/core/system.cpp
+++ b/src/core/system.cpp
@@ -24,13 +24,11 @@ void Init(EmuWindow* emu_window) {
24 Kernel::Init(); 24 Kernel::Init();
25 HLE::Init(); 25 HLE::Init();
26 VideoCore::Init(emu_window); 26 VideoCore::Init(emu_window);
27
28 GDBStub::Init(); 27 GDBStub::Init();
29} 28}
30 29
31void Shutdown() { 30void Shutdown() {
32 GDBStub::Deinit(); 31 GDBStub::Shutdown();
33
34 VideoCore::Shutdown(); 32 VideoCore::Shutdown();
35 HLE::Shutdown(); 33 HLE::Shutdown();
36 Kernel::Shutdown(); 34 Kernel::Shutdown();