mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
make the reached entity warning display even without verbose
This commit is contained in:
parent
2ea7ca1efd
commit
f93cc0d5d5
1 changed files with 7 additions and 6 deletions
|
@ -251,12 +251,13 @@ FillOutside (node_t *node)
|
||||||
leakfile = 0;
|
leakfile = 0;
|
||||||
if (!options.hullnum) {
|
if (!options.hullnum) {
|
||||||
v = entities[hit_occupied].origin;
|
v = entities[hit_occupied].origin;
|
||||||
qprintf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
printf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||||
qprintf ("reached occupant at: (%4.0f,%4.0f,%4.0f)\n", v[0], v[1],
|
printf ("reached occupant at: (%4.0f,%4.0f,%4.0f) %s\n",
|
||||||
v[2]);
|
v[0], v[1], v[2],
|
||||||
qprintf ("no filling performed\n");
|
ValueForKey (&entities[hit_occupied], "classname"));
|
||||||
qprintf ("leak file written to %s\n", options.pointfile);
|
printf ("no filling performed\n");
|
||||||
qprintf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
printf ("leak file written to %s\n", options.pointfile);
|
||||||
|
printf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||||
}
|
}
|
||||||
// remove faces from filled in leafs
|
// remove faces from filled in leafs
|
||||||
ClearOutFaces (node);
|
ClearOutFaces (node);
|
||||||
|
|
Loading…
Reference in a new issue