Clean up the in_leaf test line.

This commit is contained in:
Bill Currie 2011-11-20 14:56:07 +09:00
parent e3d8394b7a
commit 73b93ffd74

View file

@ -204,10 +204,10 @@ MOD_TraceLine (hull_t *hull, int num,
// it's not possible to not be in the leaf when doing a point trace // it's not possible to not be in the leaf when doing a point trace
// if leaf is null, assume we're in the leaf // if leaf is null, assume we're in the leaf
// if plane is null, the trace did not cross the last node plane // if plane is null, the trace did not cross the last node plane
int in_leaf = (trace->type == tr_point || !leaf || !split_plane int in_leaf = 1;
|| check_in_leaf (hull, trace, leaf, if (trace->type != tr_point && leaf && split_plane)
split_plane, in_leaf = check_in_leaf (hull, trace, leaf, split_plane,
vel, start)); vel, start);
if (in_leaf && num == CONTENTS_SOLID) { if (in_leaf && num == CONTENTS_SOLID) {
if (!seen_empty && !seen_solid) { if (!seen_empty && !seen_solid) {
// this is the first leaf visited, thus the start leaf // this is the first leaf visited, thus the start leaf