summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-24 02:04:33 +0200
committerbunnei <bunneidev@gmail.com>2021-05-06 01:40:52 +0200
commit864841eb9eb3af7443aa3672e812e512967ea46e (patch)
tree312c365f37c0d66e36ef152b27076091732c4da1
parenthle: kernel: Cleanup shutdown of persistent kernel objects. (diff)
downloadyuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar.gz
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar.bz2
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar.lz
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar.xz
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.tar.zst
yuzu-864841eb9eb3af7443aa3672e812e512967ea46e.zip
-rw-r--r--src/core/hle/kernel/kernel.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index b2eb51bde..409bcfaa0 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -694,9 +694,7 @@ struct KernelCore::Impl {
};
KernelCore::KernelCore(Core::System& system) : impl{std::make_unique<Impl>(system, *this)} {}
-KernelCore::~KernelCore() {
- Shutdown();
-}
+KernelCore::~KernelCore() = default;
void KernelCore::SetMulticore(bool is_multicore) {
impl->SetMulticore(is_multicore);