core: hle: kernel: Disable dispatch count tracking on single core.

- This would have limited value, and would be a mess to handle properly.
This commit is contained in:
bunnei 2021-08-14 02:14:19 -07:00
parent d14b8fc747
commit 3dc803a430
3 changed files with 14 additions and 5 deletions

View file

@ -32,7 +32,7 @@ void CpuManager::Initialize() {
core_data[core].host_thread = std::jthread(ThreadStart, std::ref(*this), core);
}
} else {
core_data[0].host_thread = std::jthread(ThreadStart, std::ref(*this), -1);
core_data[0].host_thread = std::jthread(ThreadStart, std::ref(*this), 0);
}
}