qbsp: fix incorrect return in FindAreas
This commit is contained in:
parent
1f28be4a4c
commit
0eeabaeb21
|
|
@ -538,7 +538,7 @@ static void FindAreas(node_t *node)
|
||||||
// area portals are always only flooded into, never
|
// area portals are always only flooded into, never
|
||||||
// out of
|
// out of
|
||||||
if (ClusterContents(leaf).native & Q2_CONTENTS_AREAPORTAL)
|
if (ClusterContents(leaf).native & Q2_CONTENTS_AREAPORTAL)
|
||||||
return;
|
continue;
|
||||||
|
|
||||||
map.c_areas++;
|
map.c_areas++;
|
||||||
FloodAreas_r(leaf);
|
FloodAreas_r(leaf);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue