summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-31 21:03:28 +0200
committerbunnei <bunneidev@gmail.com>2018-03-31 22:06:45 +0200
commitb27ab46bde8bd0c376747284435fcfa2b35aea75 (patch)
tree7cc608033e61e4697bad475699d74c35c8bd5370 /src/core/hle/kernel/thread.cpp
parentMerge pull request #293 from N00byKing/drkthm (diff)
downloadyuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar.gz
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar.bz2
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar.lz
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar.xz
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.tar.zst
yuzu-b27ab46bde8bd0c376747284435fcfa2b35aea75.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 145f50887..f3a8aa4aa 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -342,7 +342,7 @@ SharedPtr<Thread> SetupMainThread(VAddr entry_point, u32 priority,
// Initialize new "main" thread
auto thread_res = Thread::Create("main", entry_point, priority, 0, THREADPROCESSORID_0,
- Memory::STACK_VADDR_END, owner_process);
+ Memory::STACK_AREA_VADDR_END, owner_process);
SharedPtr<Thread> thread = std::move(thread_res).Unwrap();