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
|
void
|
||||||
FreeBrushsetBrushes(brush_t *brushlist)
|
FreeBrushes(brush_t *brushlist)
|
||||||
{
|
{
|
||||||
brush_t *brush, *next;
|
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
|
* 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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue