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>2008-07-31 13:24:30 +0000
committerStijn Buys <ingar@osirion.org>2008-07-31 13:24:30 +0000
commit32317145166988e5f9c65395bfc027aa2d32ed0e (patch)
tree5d35ad63dcd61192b6a790868b4d34a201c5af32 /src/model/model.cc
parent478d332c4f9a52c27f1a53fe5870fff862378fd3 (diff)
fix debug messages
Diffstat (limited to 'src/model/model.cc')
-rw-r--r--src/model/model.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/model/model.cc b/src/model/model.cc
index 979b79a..101895b 100644
--- a/src/model/model.cc
+++ b/src/model/model.cc
@@ -106,10 +106,9 @@ void Model::clear()
void Model::list_model(Model *model)
{
- con_print << " " << model->name() << " " <<
+ con_print << " " << model->name() << " " << model->fragments().size() << " frags " <<
model->model_tris_count << "/" << model->model_tris_detail_count << " tris/detail " <<
- model->model_quad_count << "/" << model->model_quad_detail_count << " quads/detail "
- << model->fragments().size() << " frags "<< std::endl;
+ model->model_quad_count << "/" << model->model_quad_detail_count << " quads/detail" << std::endl;
}
void Model::list()