mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-18 07:37:33 +01:00
CPU_Manager: Correct stopping on SingleCore.
This commit is contained in:
parent
db68fba4a6
commit
1a5f2e290b
@ -39,10 +39,15 @@ void CpuManager::Initialize() {
|
|||||||
void CpuManager::Shutdown() {
|
void CpuManager::Shutdown() {
|
||||||
running_mode = false;
|
running_mode = false;
|
||||||
Pause(false);
|
Pause(false);
|
||||||
|
if (is_multicore) {
|
||||||
for (std::size_t core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
|
for (std::size_t core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
|
||||||
core_data[core].host_thread->join();
|
core_data[core].host_thread->join();
|
||||||
core_data[core].host_thread.reset();
|
core_data[core].host_thread.reset();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
core_data[0].host_thread->join();
|
||||||
|
core_data[0].host_thread.reset();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::function<void(void*)> CpuManager::GetGuestThreadStartFunc() {
|
std::function<void(void*)> CpuManager::GetGuestThreadStartFunc() {
|
||||||
|
Loading…
Reference in New Issue
Block a user