allow more hull points (don't remember why, now, but...)

This commit is contained in:
Bill Currie 2006-11-10 13:51:02 +00:00 committed by Jeff Teunissen
parent 606f0cddf1
commit 538f0ee51f

View file

@ -394,8 +394,8 @@ vec3_t hull_size[3][2] = {
{{-32, -32, -64}, {32, 32, 24}}
};
#define MAX_HULL_POINTS 64
#define MAX_HULL_EDGES 128
#define MAX_HULL_POINTS 256
#define MAX_HULL_EDGES MAX_HULL_POINTS * 2
int num_hull_points;
vec3_t hull_points[MAX_HULL_POINTS];