From: havoc Date: Thu, 26 Sep 2002 02:55:14 +0000 (+0000) Subject: increased maximum stack depth X-Git-Tag: RELEASE_0_2_0_RC1~195 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5c1886529daeb1b15fc5fc28e296d7916fdeb27f;p=xonotic%2Fdarkplaces.git increased maximum stack depth git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2445 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/pr_exec.c b/pr_exec.c index a631a7e3..40cceb02 100644 --- a/pr_exec.c +++ b/pr_exec.c @@ -27,7 +27,7 @@ typedef struct dfunction_t *f; } prstack_t; -#define MAX_STACK_DEPTH 32 +#define MAX_STACK_DEPTH 256 prstack_t pr_stack[MAX_STACK_DEPTH]; int pr_depth = 0;