diff --git a/src/Platform_Switch.c b/src/Platform_Switch.c index d8f52821f..f0bb61542 100644 --- a/src/Platform_Switch.c +++ b/src/Platform_Switch.c @@ -246,7 +246,7 @@ static void ExecSwitchThread(void* param) { void* Thread_Create(Thread_StartFunc func) { Thread* thread = (Thread*)Mem_Alloc(1, sizeof(Thread), "thread"); - threadCreate(thread, ExecSwitchThread, (void*)func, NULL, 0x10000, 0x2C, -2); + threadCreate(thread, ExecSwitchThread, (void*)func, NULL, 0x20000, 0x2C, -2); return thread; }