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-05-30 19:56:10 +0000
committerStijn Buys <ingar@osirion.org>2008-05-30 19:56:10 +0000
commit8933b795003f8ad202fce6e553191be8932a37b6 (patch)
treebfb460cbf9261b44deabfd469046a14a95c8d16c /src/client
parentf71901eeab126bb4b7e2552dd2edf0b34632c683 (diff)
zlib support
Diffstat (limited to 'src/client')
-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 d5f7d49..24eb8e3 100644
--- a/src/client/view.cc
+++ b/src/client/view.cc
@@ -154,7 +154,7 @@ void draw_status()
int minutes = (int) floorf(core::game()->clientframetime() / 60.0f);
int seconds = (int) floorf( core::game()->clientframetime() - (float) minutes* 60.0f);
- status << "^Ntime ^B" << std::setfill('0') << std::setw(2) << minutes << ":" << std::setfill('0') << std::setw(2) << seconds;
+ status << "^Ntime ^B" << std::setfill(' ') << std::setw(3) << minutes << ":" << std::setfill('0') << std::setw(2) << seconds;
Text::draw(video::width-Text::fontwidth()*11-4, 4+Text::fontheight(), status);
}
@@ -193,7 +193,7 @@ void draw_cursor()
float crosshair_size = 48.0f;
float x = input::mouse_x - (crosshair_size /2);
float y = input::mouse_y - (crosshair_size /2);
-
+// 0
using namespace render;
render::Textures::bind("bitmaps/crosshair");