From ab6956c9d0e00c75a0f5610e78b292192a64a05a Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 21 May 2021 22:25:05 -0600 Subject: [PATCH] bsputils: fix comment --- common/bsputils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/bsputils.cc b/common/bsputils.cc index 52ce3042..77afb42a 100644 --- a/common/bsputils.cc +++ b/common/bsputils.cc @@ -291,7 +291,7 @@ static bool Light_PointInSolid_r(const mbsp_t *bsp, const int nodenum, const vec || Light_PointInSolid_r(bsp, node->children[1], point); } -// Tests model 0 of the given model +// Tests hull 0 of the given model bool Light_PointInSolid(const mbsp_t *bsp, const dmodel_t *model, const vec3_t point) { return Light_PointInSolid_r(bsp, model->headnode[0], point);