Only set an explicit pthread stack size on Vita

This commit is contained in:
Cameron Gutman
2026-01-05 00:23:31 -06:00
parent 0586f3d65f
commit 3a377e7d7b

View File

@@ -286,7 +286,9 @@ int PltCreateThread(const char* name, ThreadEntry entry, void* context, PLT_THRE
pthread_attr_init(&attr);
#ifdef __vita__
pthread_attr_setstacksize(&attr, 0x100000);
#endif
ctx->name = name;