From bf514bcd7d0b3b1d90932b17a5826ce4e8ba717d Mon Sep 17 00:00:00 2001 From: Zeex Date: Mon, 23 Oct 2017 08:00:33 +0600 Subject: [PATCH] Increase size of literal queue buffer --- source/compiler/sc.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/compiler/sc.h b/source/compiler/sc.h index 9639725..9d68b0e 100644 --- a/source/compiler/sc.h +++ b/source/compiler/sc.h @@ -68,12 +68,12 @@ #define CTRL_CHAR '\\' /* default control character */ #define sCHARBITS 8 /* size of a packed character */ -#define sDIMEN_MAX 4 /* maximum number of array dimensions */ -#define sLINEMAX 4095 /* input line length (in characters) */ -#define sCOMP_STACK 32 /* maximum nesting of #if .. #endif sections */ -#define sDEF_LITMAX 500 /* initial size of the literal pool, in "cells" */ -#define sDEF_AMXSTACK 4096 /* default stack size for AMX files */ -#define PREPROC_TERM '\x7f'/* termination character for preprocessor expressions (the "DEL" code) */ +#define sDIMEN_MAX 4 /* maximum number of array dimensions */ +#define sLINEMAX 4095 /* input line length (in characters) */ +#define sCOMP_STACK 32 /* maximum nesting of #if .. #endif sections */ +#define sDEF_LITMAX 10000 /* initial size of the literal pool, in "cells" */ +#define sDEF_AMXSTACK 4096 /* default stack size for AMX files */ +#define PREPROC_TERM '\x7f' /* termination character for preprocessor expressions (the "DEL" code) */ #define sDEF_PREFIX "default.inc" /* default prefix filename */ typedef union {