mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-20 18:52:28 +00:00
Correct the "can see anything new" check.
I had the super-set and sub-set parameters backwards, but that's because I had misinterpreted the old code.
This commit is contained in:
parent
cb025838aa
commit
281c5f185d
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ RecursiveClusterFlow (int clusternum, threaddata_t *thread, pstack_t *prevstack)
|
|||
}
|
||||
set_assign (might, prevstack->mightsee);
|
||||
set_intersection (might, test);
|
||||
more = !set_is_subset (might, vis);
|
||||
more = !set_is_subset (vis, might);
|
||||
|
||||
if (!more) // can't see anything new
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue