summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-28 03:20:49 +0100
committerLioncash <mathew1800@gmail.com>2018-12-28 03:50:16 +0100
commita81ff6f54c60101f0c55072cc0587678fb976cc3 (patch)
treeb71162dc34e7f6dcad3b3129734dfc1a763f19f4 /src/core/hle/kernel
parentkernel: Rename 'default' CPU core to 'ideal' core (diff)
downloadyuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar.gz
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar.bz2
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar.lz
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar.xz
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.tar.zst
yuzu-a81ff6f54c60101f0c55072cc0587678fb976cc3.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/process.cpp4
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
// Initialize new "main" thread
const VAddr stack_top = owner_process.VMManager().GetTLSIORegionEndAddress();
- auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0, THREADPROCESSORID_0,
- stack_top, owner_process);
+ auto thread_res = Thread::Create(kernel, "main", entry_point, priority, 0,
+ owner_process.GetIdealCore(), stack_top, owner_process);
SharedPtr<Thread> thread = std::move(thread_res).Unwrap();