From ee012dcd36eb6f7b6087c1e51ca64dff566c7c0e Mon Sep 17 00:00:00 2001 From: headshot2017 <> Date: Sat, 9 Mar 2024 22:12:27 -0400 Subject: [PATCH] use 0x20000 stack size for threads --- src/Platform_Switch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }