diff options
| author | bunnei <bunneidev@gmail.com> | 2018-03-31 15:03:28 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-03-31 16:06:45 -0400 |
| commit | b27ab46bde8bd0c376747284435fcfa2b35aea75 (patch) | |
| tree | 7cc608033e61e4697bad475699d74c35c8bd5370 /src/core/hle/kernel/thread.cpp | |
| parent | b3298465cfc0586d8ca145b3ca76216fbe85e34e (diff) | |
memory: Fix stack region.
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
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(); |
