From b32c086a9b9deed4c34ade6e2447861a9c4bfc46 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 24 Mar 2008 12:35:48 +0000 Subject: moved the sphere into the vertex array --- src/client/view.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') 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); } -- cgit v1.2.3