mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-20 18:52:28 +00:00
[qwaq] Give qwaq progs a stack of 64kB
16kW should be enough as a default (when I get around to making it configurable). Stops vkgen from trashing its heap with the stack.
This commit is contained in:
parent
2fcec6e5cb
commit
bea1155e9e
1 changed files with 1 additions and 0 deletions
|
@ -227,6 +227,7 @@ load_progs (progs_t *pr, const char *name)
|
|||
pr->progs_name = name;
|
||||
pr->max_edicts = 1;
|
||||
pr->zone_size = 1024*1024;
|
||||
pr->stack_size = 64*1024;
|
||||
PR_LoadProgsFile (pr, file, size);
|
||||
Qclose (file);
|
||||
if (!PR_RunLoadFuncs (pr))
|
||||
|
|
Loading…
Reference in a new issue