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

View file

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