diff options
| author | Jakob Fries <jakob.fries@gmail.com> | 2007-07-22 13:43:31 +0000 |
|---|---|---|
| committer | Jakob Fries <jakob.fries@gmail.com> | 2007-07-22 13:43:31 +0000 |
| commit | 8780116a02d31d49e239bc2c04b791454dc53864 (patch) | |
| tree | 883b240d76a2bf8704a51ed8b8f7fa5db6437ba0 /src/game/client | |
| parent | f7b2accd52c289cd302c939bbf40ff6689b203f8 (diff) | |
| download | zcatch-8780116a02d31d49e239bc2c04b791454dc53864.tar.gz zcatch-8780116a02d31d49e239bc2c04b791454dc53864.zip | |
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/menu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/menu.cpp b/src/game/client/menu.cpp index 00444146..1d87a688 100644 --- a/src/game/client/menu.cpp +++ b/src/game/client/menu.cpp @@ -270,7 +270,7 @@ void draw_menu_button(void *id, const char *text, int checked, float x, float y, void draw_teewars_button(void *id, const char *text, int checked, float x, float y, float w, float h, void *extra) { - const float font_size = 46.0f; + const float font_size = 42.0f; float text_width = gfx_pretty_text_width(font_size, text); gui_tileset_enum tileset; @@ -290,7 +290,7 @@ void draw_teewars_button(void *id, const char *text, int checked, float x, float draw_box(GUI_BOX_BUTTON, tileset, x, y, w, h); - ui_do_label(x + w/2 - text_width/2, y, text, font_size); + ui_do_label(x + w/2 - text_width/2, y + 2, text, font_size); } /* |