From d16c2bd956a69754e1c2aef6600c10d944638673 Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Mon, 11 May 2015 05:08:47 -0300 Subject: Thread: Correctly set main thread initial stack position --- src/core/hle/kernel/thread.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/core/hle/kernel/thread.h') diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 6891c8c2..afdaf851 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -181,12 +181,11 @@ private: /** * Sets up the primary application thread - * @param stack_size The size of the thread's stack * @param entry_point The address at which the thread should start execution * @param priority The priority to give the main thread * @return A shared pointer to the main thread */ -SharedPtr SetupMainThread(u32 stack_size, u32 entry_point, s32 priority); +SharedPtr SetupMainThread(u32 entry_point, s32 priority); /** * Reschedules to the next available thread (call after current thread is suspended) -- cgit v1.2.3