pr_exec.c, MAX_STACK_DEPTH: increase from 32 to 64

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1415 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2017-06-23 15:47:01 +00:00
parent d61095a0e0
commit 3405b87ee0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ typedef struct
dfunction_t *f;
} prstack_t;
#define MAX_STACK_DEPTH 32
#define MAX_STACK_DEPTH 64 /* was 32 */
static prstack_t pr_stack[MAX_STACK_DEPTH];
static int pr_depth;