summaryrefslogtreecommitdiff
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-14 02:14:19 -0700
committerbunnei <bunneidev@gmail.com>2021-08-14 02:14:19 -0700
commitaef0ca6f0d422623f46f47c15e9a4c9b5fd04dd0 (patch)
treef82819f5b1470345ea3aab20ba18eba67afe63e5 /src/core/cpu_manager.cpp
parent5060a9721091b3cc994a73569bfd5ab573b9f47d (diff)
core: hle: kernel: Disable dispatch count tracking on single core.
- This would have limited value, and would be a mess to handle properly.
Diffstat (limited to 'src/core/cpu_manager.cpp')
-rw-r--r--src/core/cpu_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index 35c1a6cbd..de2e5563e 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -33,7 +33,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);
}
}