Remove unused array weighing an assload of bytes in the .bss segment.

git-svn-id: https://svn.eduke32.com/eduke32@1231 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2009-03-03 14:01:14 +00:00
parent 39607e84b1
commit 7f28f6a9bd

View file

@ -5938,16 +5938,16 @@ void drawrooms(int32_t daposx, int32_t daposy, int32_t daposz,
}
// UTILITY TYPES AND FUNCTIONS FOR DRAWMASKS OCCLUSION TREE
typedef struct s_maskleaf
{
int32_t index;
_point2d p1, p2;
_equation maskeq, p1eq, p2eq;
struct s_maskleaf* branch[MAXWALLSB];
int32_t drawing;
} _maskleaf;
_maskleaf maskleaves[MAXWALLSB];
// typedef struct s_maskleaf
// {
// int32_t index;
// _point2d p1, p2;
// _equation maskeq, p1eq, p2eq;
// struct s_maskleaf* branch[MAXWALLSB];
// int32_t drawing;
// } _maskleaf;
//
// _maskleaf maskleaves[MAXWALLSB];
// returns equation of a line given two points
static inline _equation equation(float x1, float y1, float x2, float y2)