moved the fps counter a bit up

This commit is contained in:
Magnus Auvinen 2009-01-20 23:59:49 +00:00
parent 278fdf937c
commit 0b3c7010d7

View file

@ -153,7 +153,7 @@ void HUD::render_fps()
{
char buf[512];
str_format(buf, sizeof(buf), "%d", (int)(1.0f/client_frametime()));
gfx_text(0, width-10-gfx_text_width(0,12,buf,-1), 10, 12, buf, -1);
gfx_text(0, width-10-gfx_text_width(0,12,buf,-1), 5, 12, buf, -1);
}
}