From 9a7e4bc5e6f9d33851f300882633f569909e2244 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 24 Dec 2006 08:01:39 +0000 Subject: [PATCH] fix some comments --- libs/models/trace.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/models/trace.c b/libs/models/trace.c index ca7174318..4b5206672 100644 --- a/libs/models/trace.c +++ b/libs/models/trace.c @@ -129,7 +129,7 @@ MOD_TraceLine (hull_t *hull, int num, return false; } - // pop up the stack for a end_dist side + // pop up the stack for a back side if (tstack-- == tracestack) { trace->allsolid = solid & (num == CONTENTS_SOLID); trace->startsolid = solid; @@ -139,7 +139,7 @@ MOD_TraceLine (hull_t *hull, int num, // set the hit point for this plane VectorCopy (end, start); - // go down the end_dist side + // go down the back side VectorCopy (tstack->end, end); side = tstack->side; split_plane = tstack->plane; @@ -172,12 +172,12 @@ MOD_TraceLine (hull_t *hull, int num, actually on */ if (start_dist >= offset && end_dist >= offset) { - // entierly in front of the plane + // entirely in front of the plane num = node->children[0]; continue; } if (start_dist <= -offset && end_dist <= -offset) { - // entierly behind the plane + // entirely behind the plane num = node->children[1]; continue; }