client.h: raise MAX_STATIC_ENTITIES further to 4096, and MAX_EFRAGS from 4096 to 8192

this is for a limit breaking map in developement. TODO: these can both be made dynamically
allocated, MarkV has applied this patch.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1388 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Eric Wasylishen 2017-03-31 00:56:13 +00:00
parent 4b6eb1bbe2
commit 198c828b03

View file

@ -85,7 +85,7 @@ typedef struct
vec3_t start, end;
} beam_t;
#define MAX_EFRAGS 4096 //ericw -- was 2048 //johnfitz -- was 640
#define MAX_EFRAGS 8192 //ericw -- was 2048 //johnfitz -- was 640
#define MAX_MAPSTRING 2048
#define MAX_DEMOS 8
@ -265,7 +265,7 @@ extern cvar_t m_side;
#define MAX_TEMP_ENTITIES 256 //johnfitz -- was 64
#define MAX_STATIC_ENTITIES 2048 //ericw -- was 512 //johnfitz -- was 128
#define MAX_STATIC_ENTITIES 4096 //ericw -- was 512 //johnfitz -- was 128
#define MAX_VISEDICTS 4096 // larger, now we support BSP2
extern client_state_t cl;