diff options
author | polaris- <nagatospam@gmail.com> | 2015-10-12 02:07:58 +0200 |
---|---|---|
committer | polaris- <nagatospam@gmail.com> | 2015-10-12 02:07:58 +0200 |
commit | 2b7316a379103edf4d22893e0f4432e6415eabfa (patch) | |
tree | fc4f6cc31b7288689726fbe379755a610a854b7f /src/core/system.cpp | |
parent | Use BreakpointAddress struct instead of passing address directly (diff) | |
download | yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.gz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.bz2 yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.lz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.xz yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.zst yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/system.cpp | 4 |
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) { Kernel::Init(); HLE::Init(); VideoCore::Init(emu_window); - GDBStub::Init(); } void Shutdown() { - GDBStub::Deinit(); - + GDBStub::Shutdown(); VideoCore::Shutdown(); HLE::Shutdown(); Kernel::Shutdown(); |