summaryrefslogtreecommitdiffstats
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorpolaris- <nagatospam@gmail.com>2015-09-02 14:56:38 +0200
committerpolaris- <nagatospam@gmail.com>2015-09-20 04:28:02 +0200
commit5114d756470ff70b0ce8c6f3ff98000462aaef35 (patch)
tree8d4a5d94b02cb2499153922542af91aaf21837bb /src/core/system.cpp
parentMerge pull request #1097 from yuriks/cfg-blocks (diff)
downloadyuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.gz
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.bz2
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.lz
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.xz
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.zst
yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.zip
Diffstat (limited to '')
-rw-r--r--src/core/system.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp
index 3cd84bf5e..421fc48a7 100644
--- a/src/core/system.cpp
+++ b/src/core/system.cpp
@@ -12,6 +12,8 @@
#include "video_core/video_core.h"
+#include "core/gdbstub/gdbstub.h"
+
namespace System {
void Init(EmuWindow* emu_window) {
@@ -22,9 +24,13 @@ void Init(EmuWindow* emu_window) {
Kernel::Init();
HLE::Init();
VideoCore::Init(emu_window);
+
+ GDBStub::Init();
}
void Shutdown() {
+ GDBStub::Deinit();
+
VideoCore::Shutdown();
HLE::Shutdown();
Kernel::Shutdown();