From 198c828b03d59d5bcdadbc3aeae54d32ed99a4e6 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 31 Mar 2017 00:56:13 +0000 Subject: [PATCH] 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 --- Quake/client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quake/client.h b/Quake/client.h index 6a04d58b..3939061f 100644 --- a/Quake/client.h +++ b/Quake/client.h @@ -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;