diff options
Diffstat (limited to 'src/model')
-rw-r--r-- | src/model/mapfile.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/model/mapfile.cc b/src/model/mapfile.cc index 575232e..d3d19f6 100644 --- a/src/model/mapfile.cc +++ b/src/model/mapfile.cc @@ -1454,19 +1454,20 @@ Model * MapFile::load(std::string const &name) } - con_debug << " imported submodel '" << submodel->name() << "'" << std::endl; + //con_debug << " imported submodel '" << submodel->name() << "'" << std::endl; } delete submodel; } + if (mapfile.warning_q2brush) + con_warn << mapfile.name() << " quake2 style brushes detected" << std::endl; + con_debug << " " << mapfile.name() << " " << mapfile.map_brushes << " brushes " << model->model_tris_detail_count << "/" << model->model_tris_count << " detail/tris " << model->model_quad_detail_count << "/" << model->model_quad_count << " detail/quads" << std::endl; - if (mapfile.warning_q2brush) - con_warn << " quake2 style brushes detected" << std::endl; return model; } |