fix a stupid bug

This commit is contained in:
Bill Currie 2000-12-02 08:31:18 +00:00
parent 7623a08ada
commit 67896c5d5d
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ cross_cube_edge (struct box_def *box, int face1, vec3_t v1, int face2,
face = axis;
else if (l[axis] < -1024)
face = axis + 3;
if (face > 0) {
if (face >= 0) {
vec3_t x;
VectorAdd (v1, v2, x);