mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
fix a stupid bug
This commit is contained in:
parent
7623a08ada
commit
67896c5d5d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue