qbsp: rename FreeBrushsetBrushes -> FreeBrushes

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-02-22 13:57:34 +10:30
parent 146986e74a
commit 996042482b
3 changed files with 4 additions and 4 deletions

View File

@ -470,11 +470,11 @@ FreeBrushFaces(face_t *facelist)
/* /*
===================== =====================
FreeBrushsetBrushes FreeBrushes
===================== =====================
*/ */
void void
FreeBrushsetBrushes(brush_t *brushlist) FreeBrushes(brush_t *brushlist)
{ {
brush_t *brush, *next; brush_t *brush, *next;

View File

@ -108,7 +108,7 @@ ProcessEntity(mapentity_t *ent, const int hullnum)
* leaving a perfect skin of the model with no hidden faces * leaving a perfect skin of the model with no hidden faces
*/ */
surfs = CSGFaces(ent); surfs = CSGFaces(ent);
FreeBrushsetBrushes(ent->brushes); FreeBrushes(ent->brushes);
if (hullnum != 0) { if (hullnum != 0) {
nodes = SolidBSP(ent, surfs, true); nodes = SolidBSP(ent, surfs, true);

View File

@ -434,7 +434,7 @@ typedef struct brush_s {
short cflags; /* Compiler internal contents flags */ short cflags; /* Compiler internal contents flags */
} brush_t; } brush_t;
void FreeBrushsetBrushes(brush_t *brushlist); void FreeBrushes(brush_t *brushlist);
void PlaneHash_Init(void); void PlaneHash_Init(void);
int FindPlane(const plane_t *plane, int *side); int FindPlane(const plane_t *plane, int *side);