make the reached entity warning display even without verbose

This commit is contained in:
Bill Currie 2003-09-08 19:50:19 +00:00
parent 2ea7ca1efd
commit f93cc0d5d5
1 changed files with 7 additions and 6 deletions

View File

@ -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);