diff options
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index 645c1d6f5..d5ca235b0 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -35,8 +35,8 @@ void SetupMainThread(Process& owner_process, KernelCore& kernel, VAddr entry_poi | |||
| 35 | 35 | ||
| 36 | // Initialize new "main" thread | 36 | // Initialize new "main" thread |
| 37 | const VAddr stack_top = owner_process.VMManager().GetTLSIORegionEndAddress(); | 37 | const VAddr stack_top = owner_process.VMManager().GetTLSIORegionEndAddress(); |
| 38 | auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0, THREADPROCESSORID_0, | 38 | auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0, |
| 39 | stack_top, owner_process); | 39 | owner_process.GetIdealCore(), stack_top, owner_process); |
| 40 | 40 | ||
| 41 | SharedPtr<Thread> thread = std::move(thread_res).Unwrap(); | 41 | SharedPtr<Thread> thread = std::move(thread_res).Unwrap(); |
| 42 | 42 | ||