mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +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;
|
||||
if (!options.hullnum) {
|
||||
v = entities[hit_occupied].origin;
|
||||
qprintf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||
qprintf ("reached occupant at: (%4.0f,%4.0f,%4.0f)\n", v[0], v[1],
|
||||
v[2]);
|
||||
qprintf ("no filling performed\n");
|
||||
qprintf ("leak file written to %s\n", options.pointfile);
|
||||
qprintf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||
printf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||
printf ("reached occupant at: (%4.0f,%4.0f,%4.0f) %s\n",
|
||||
v[0], v[1], v[2],
|
||||
ValueForKey (&entities[hit_occupied], "classname"));
|
||||
printf ("no filling performed\n");
|
||||
printf ("leak file written to %s\n", options.pointfile);
|
||||
printf ("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
|
||||
}
|
||||
// remove faces from filled in leafs
|
||||
ClearOutFaces (node);
|
||||
|
|
Loading…
Reference in a new issue