diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 80a78e643..97a5dc2e0 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -169,7 +169,7 @@ struct KernelCore::Impl { | |||
| 169 | std::string name = "Suspend Thread Id:" + std::to_string(i); | 169 | std::string name = "Suspend Thread Id:" + std::to_string(i); |
| 170 | std::function<void(void*)> init_func = Core::CpuManager::GetSuspendThreadStartFunc(); | 170 | std::function<void(void*)> init_func = Core::CpuManager::GetSuspendThreadStartFunc(); |
| 171 | void* init_func_parameter = system.GetCpuManager().GetStartFuncParamater(); | 171 | void* init_func_parameter = system.GetCpuManager().GetStartFuncParamater(); |
| 172 | auto thread_res = KThread::Create(system, THREADTYPE_KERNEL, std::move(name), 0, 0, 0, | 172 | auto thread_res = KThread::Create(system, ThreadType::Kernel, std::move(name), 0, 0, 0, |
| 173 | static_cast<u32>(i), 0, nullptr, std::move(init_func), | 173 | static_cast<u32>(i), 0, nullptr, std::move(init_func), |
| 174 | init_func_parameter); | 174 | init_func_parameter); |
| 175 | 175 | ||