mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
raise some limits so customtf will build. this is NOT the right solution :(
This commit is contained in:
parent
b25a437460
commit
135e533e77
1 changed files with 3 additions and 3 deletions
|
@ -268,7 +268,7 @@ typedef struct def_s
|
||||||
|
|
||||||
#define MAX_NAME 64 // chars long
|
#define MAX_NAME 64 // chars long
|
||||||
|
|
||||||
#define MAX_REGS 16384
|
#define MAX_REGS 65536
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
|
@ -413,9 +413,9 @@ extern def_t def_ret, def_parms[MAX_PARMS];
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
#define MAX_STRINGS 500000
|
#define MAX_STRINGS 500000
|
||||||
#define MAX_GLOBALS 16384
|
#define MAX_GLOBALS 65536
|
||||||
#define MAX_FIELDS 1024
|
#define MAX_FIELDS 1024
|
||||||
#define MAX_STATEMENTS 65536
|
#define MAX_STATEMENTS 131072
|
||||||
#define MAX_FUNCTIONS 8192
|
#define MAX_FUNCTIONS 8192
|
||||||
|
|
||||||
#define MAX_SOUNDS 1024
|
#define MAX_SOUNDS 1024
|
||||||
|
|
Loading…
Reference in a new issue