remove some redundant code

This is an imperfect revision of history.
This commit is contained in:
Bill Currie 2004-11-02 05:17:00 +00:00 committed by Jeff Teunissen
parent 6625d38a05
commit 1e1734f6b4

View file

@ -175,13 +175,7 @@ TestLine (lightinfo_t *l, vec3_t start, vec3_t end)
// go down the back side
VectorCopy (tstack->backpt, backpt);
node = tnodes[tstack->node].children[!tstack->side];
}
if (node == CONTENTS_SOLID && empty) {
// DONE!
VectorCopy (backpt, l->testlineimpact);
return false;
node = tnodes[tstack->node].children[tstack->side ^ 1];
}
tnode = &tnodes[node];