mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 23:07:32 +01:00
hle: kernel: Do not shutdown twice on emulator close.
This commit is contained in:
parent
39a8dba9a6
commit
864841eb9e
@ -694,9 +694,7 @@ struct KernelCore::Impl {
|
|||||||
};
|
};
|
||||||
|
|
||||||
KernelCore::KernelCore(Core::System& system) : impl{std::make_unique<Impl>(system, *this)} {}
|
KernelCore::KernelCore(Core::System& system) : impl{std::make_unique<Impl>(system, *this)} {}
|
||||||
KernelCore::~KernelCore() {
|
KernelCore::~KernelCore() = default;
|
||||||
Shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
void KernelCore::SetMulticore(bool is_multicore) {
|
void KernelCore::SetMulticore(bool is_multicore) {
|
||||||
impl->SetMulticore(is_multicore);
|
impl->SetMulticore(is_multicore);
|
||||||
|
Loading…
Reference in New Issue
Block a user