diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/view.cc | 4 |
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"); |