diff --git a/include/qbsp/outside.hh b/include/qbsp/outside.hh index f1fd4b05..680d831a 100644 --- a/include/qbsp/outside.hh +++ b/include/qbsp/outside.hh @@ -22,6 +22,7 @@ #ifndef QBSP_OUTSIDE_HH #define QBSP_OUTSIDE_HH +node_t *PointInLeaf(node_t *node, const vec3_t point); bool FillOutside(node_t *node, const int hullnum); #endif diff --git a/qbsp/outside.cc b/qbsp/outside.cc index df43f528..37ee5add 100644 --- a/qbsp/outside.cc +++ b/qbsp/outside.cc @@ -31,7 +31,7 @@ PointInLeaf =========== */ -static node_t * +node_t * PointInLeaf(node_t *node, const vec3_t point) { vec_t dist;