Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-17 11:40:15 +0000
committerStijn Buys <ingar@osirion.org>2009-08-17 11:40:15 +0000
commit5636fad174f0bcff857c357c394c4cc8d424b302 (patch)
treed41807018da962a930ef087b73ce4ac89a90c6f8 /src/model/mapfile.cc
parent80aaacbaef16b4eba33428aec268f80e7466cbb1 (diff)
reload entity/info models on r_restart
Diffstat (limited to 'src/model/mapfile.cc')
-rw-r--r--src/model/mapfile.cc7
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;
}