From: havoc Date: Wed, 26 Feb 2003 01:41:00 +0000 (+0000) Subject: Too fine an AREA_GRID seems to be dropping performance in normal quake maps (I hope... X-Git-Tag: xonotic-v0.1.0preview~6752 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=12a61f445c6bc468a2fbd979bd4713215eeb7831;hp=49103816aa305086338c024347d7b461c4d3de06;ds=sidebyside Too fine an AREA_GRID seems to be dropping performance in normal quake maps (I hope this fixes the performance). git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2782 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/world.c b/world.c index 7505c86f..6a7a1a51 100644 --- a/world.c +++ b/world.c @@ -179,7 +179,7 @@ typedef struct areagrid_s } areagrid_t; -#define AREA_GRID 32 +#define AREA_GRID 16 #define AREA_GRIDNODES (AREA_GRID * AREA_GRID) static areagrid_t sv_areagrid[AREA_GRIDNODES];