use 0x20000 stack size for threads

This commit is contained in:
headshot2017 2024-03-09 22:12:27 -04:00
parent 8566ac9631
commit ee012dcd36

View File

@ -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;
}