diff options
| author | Alfred Eriksson <somerunce@gmail.com> | 2008-11-17 14:43:51 +0000 |
|---|---|---|
| committer | Alfred Eriksson <somerunce@gmail.com> | 2008-11-17 14:43:51 +0000 |
| commit | c7e8e057f260bd752f2e34c263a206c825d83867 (patch) | |
| tree | bcc6fce26aeaccc82cc58acdd33cc309c8f03c9b /src/game/client | |
| parent | cff4feea6b0ee0249b6955c0783a302df77b82c4 (diff) | |
| download | zcatch-c7e8e057f260bd752f2e34c263a206c825d83867.tar.gz zcatch-c7e8e057f260bd752f2e34c263a206c825d83867.zip | |
fixed overlapping texts in hud
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/components/hud.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/components/hud.cpp b/src/game/client/components/hud.cpp index ef503a19..697e75bd 100644 --- a/src/game/client/components/hud.cpp +++ b/src/game/client/components/hud.cpp @@ -198,7 +198,7 @@ void HUD::render_teambalancewarning() gfx_text_color(1,1,0.5f,1); else gfx_text_color(0.7f,0.7f,0.2f,1.0f); - gfx_text(0x0, 5, 40, 6, text, -1); + gfx_text(0x0, 5, 50, 6, text, -1); gfx_text_color(1,1,1,1); } } @@ -211,9 +211,9 @@ void HUD::render_voting() return; gfx_text_color(1,1,1,1); - gfx_text(0x0, 5, 50, 6, gameclient.voting->vote_description(), -1); + gfx_text(0x0, 5, 60, 6, gameclient.voting->vote_description(), -1); - RECT base = {5, 60, 119, 3}; + RECT base = {5, 70, 119, 3}; gameclient.voting->render_bars(base, false); char buf[512]; |