From a4e3b7d2e4cb643f1d2f476bc8cbbad54e707f06 Mon Sep 17 00:00:00 2001 From: lordhavoc Date: Wed, 15 May 2002 09:04:56 +0000 Subject: [PATCH] increased MAX_SURFVERTS to hold as many as the surf mesh splitter in model_brush.c allows (and added comment saying so) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1842 d7cf8633-e32d-0410-b094-e92efae38249 --- gl_rsurf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gl_rsurf.c b/gl_rsurf.c index edfe4cdb..c810b022 100644 --- a/gl_rsurf.c +++ b/gl_rsurf.c @@ -485,7 +485,8 @@ static float turbsin[256] = }; #define TURBSCALE (256.0 / (2 * M_PI)) -#define MAX_SURFVERTS 1024 +// only need to hold as many verts as the mesh splitter will allow in model_brush.c +#define MAX_SURFVERTS 3072 typedef struct { float v[4]; -- 2.39.2