qbsp: rename FreeBrushsetBrushes -> FreeBrushes
Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
parent
146986e74a
commit
996042482b
|
|
@ -470,11 +470,11 @@ FreeBrushFaces(face_t *facelist)
|
|||
|
||||
/*
|
||||
=====================
|
||||
FreeBrushsetBrushes
|
||||
FreeBrushes
|
||||
=====================
|
||||
*/
|
||||
void
|
||||
FreeBrushsetBrushes(brush_t *brushlist)
|
||||
FreeBrushes(brush_t *brushlist)
|
||||
{
|
||||
brush_t *brush, *next;
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ ProcessEntity(mapentity_t *ent, const int hullnum)
|
|||
* leaving a perfect skin of the model with no hidden faces
|
||||
*/
|
||||
surfs = CSGFaces(ent);
|
||||
FreeBrushsetBrushes(ent->brushes);
|
||||
FreeBrushes(ent->brushes);
|
||||
|
||||
if (hullnum != 0) {
|
||||
nodes = SolidBSP(ent, surfs, true);
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ typedef struct brush_s {
|
|||
short cflags; /* Compiler internal contents flags */
|
||||
} brush_t;
|
||||
|
||||
void FreeBrushsetBrushes(brush_t *brushlist);
|
||||
void FreeBrushes(brush_t *brushlist);
|
||||
|
||||
void PlaneHash_Init(void);
|
||||
int FindPlane(const plane_t *plane, int *side);
|
||||
|
|
|
|||
Loading…
Reference in New Issue