diff options
Diffstat (limited to 'src/core/cpu_manager.cpp')
| -rw-r--r-- | src/core/cpu_manager.cpp | 2 |
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() { | |||
| 32 | core_data[core].host_thread = std::jthread(ThreadStart, std::ref(*this), core); | 32 | core_data[core].host_thread = std::jthread(ThreadStart, std::ref(*this), core); |
| 33 | } | 33 | } |
| 34 | } else { | 34 | } else { |
| 35 | core_data[0].host_thread = std::jthread(ThreadStart, std::ref(*this), -1); | 35 | core_data[0].host_thread = std::jthread(ThreadStart, std::ref(*this), 0); |
| 36 | } | 36 | } |
| 37 | } | 37 | } |
| 38 | 38 | ||