mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
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:
parent
4b6eb1bbe2
commit
198c828b03
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue