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-03-24 12:35:48 +0000
committerStijn Buys <ingar@osirion.org>2008-03-24 12:35:48 +0000
commitb32c086a9b9deed4c34ade6e2447861a9c4bfc46 (patch)
treef3213a8f4b1ffd15df28aa6bd82b9fe6c1bb979d /src/client/view.cc
parent80ad7e99b738f367eb045768d054cf74347ee1b4 (diff)
moved the sphere into the vertex array
Diffstat (limited to 'src/client/view.cc')
-rw-r--r--src/client/view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/view.cc b/src/client/view.cc
index 15b8606..a19f98a 100644
--- a/src/client/view.cc
+++ b/src/client/view.cc
@@ -148,8 +148,8 @@ void draw_status()
std::stringstream stats;
stats << "fps " << std::setw(6) << fps << "\n";
if (core::application()->connected()) {
- stats << "tris " << std::setw(6) << render::Stats::tris << "\n";
- stats << "spheres " << std::setw(3) << render::Stats::spheres << "\n";
+ stats << "tris " << std::setw(5) << render::Stats::tris << "\n";
+ stats << "quads " << std::setw(5) << render::Stats::quads << "\n";
}
draw_text(video::width-CHARWIDTH*12, CHARHEIGHT*2, stats);
}