vis:: restore warnings disabled in 74e1a0f6f0
This commit is contained in:
parent
5bcb2d4657
commit
189cc0586c
|
|
@ -144,9 +144,7 @@ static void RecursiveLeafFlow(int leafnum, threaddata_t *thread, pstack_t &prevs
|
|||
*/
|
||||
err = CheckStack(leaf, thread);
|
||||
if (err) {
|
||||
// ericw -- this seems harmless and the fix for https://github.com/ericwa/ericw-tools/issues/261
|
||||
// causes it to happen a lot.
|
||||
// logging::funcprint("WARNING: recursion on leaf {}\n", leafnum);
|
||||
logging::funcprint("WARNING: recursion on leaf {}\n", leafnum);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -404,10 +404,8 @@ static void ClusterFlow(int clusternum, leafbits_t &buffer, mbsp_t *bsp)
|
|||
buffer.data()[j] |= p->visbits.data()[j];
|
||||
}
|
||||
|
||||
// ericw -- this seems harmless and the fix for https://github.com/ericwa/ericw-tools/issues/261
|
||||
// causes it to happen a lot.
|
||||
// if (TestLeafBit(buffer, clusternum))
|
||||
// logging::print("WARNING: Leaf portals saw into cluster ({})\n", clusternum);
|
||||
if (buffer[clusternum])
|
||||
logging::print("WARNING: Leaf portals saw into cluster ({})\n", clusternum);
|
||||
|
||||
buffer[clusternum] = true;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue