summaryrefslogtreecommitdiffstats
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-14 11:14:19 +0200
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:17 +0100
commit3dc803a430107fb22ffc91608c613e09ec5c8b51 (patch)
treef8d5a747cf9d89befd89beec16bdc116d2725fe8 /src/core/cpu_manager.cpp
parentcore: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard. (diff)
downloadyuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.gz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.bz2
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.lz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.xz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.zst
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.zip
Diffstat (limited to '')
-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 d9bd5b665..cbcc54891 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -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);
}
}