From 996042482b5f83c278e786e7df2b715b572296fb Mon Sep 17 00:00:00 2001 From: Kevin Shanahan Date: Fri, 22 Feb 2013 13:57:34 +1030 Subject: [PATCH] qbsp: rename FreeBrushsetBrushes -> FreeBrushes Signed-off-by: Kevin Shanahan --- qbsp/brush.c | 4 ++-- qbsp/qbsp.c | 2 +- qbsp/qbsp.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qbsp/brush.c b/qbsp/brush.c index 135506df..0f9f6fff 100644 --- a/qbsp/brush.c +++ b/qbsp/brush.c @@ -470,11 +470,11 @@ FreeBrushFaces(face_t *facelist) /* ===================== -FreeBrushsetBrushes +FreeBrushes ===================== */ void -FreeBrushsetBrushes(brush_t *brushlist) +FreeBrushes(brush_t *brushlist) { brush_t *brush, *next; diff --git a/qbsp/qbsp.c b/qbsp/qbsp.c index 0e5c95d9..a0dfb910 100644 --- a/qbsp/qbsp.c +++ b/qbsp/qbsp.c @@ -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); diff --git a/qbsp/qbsp.h b/qbsp/qbsp.h index ed1a9436..32b183f2 100644 --- a/qbsp/qbsp.h +++ b/qbsp/qbsp.h @@ -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);