diff options
| author | oy <Tom_Adams@web.de> | 2011-01-17 13:55:14 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-01-17 13:55:14 +0100 |
| commit | 02db5bfe6626b0e6d480c59110816624083790ce (patch) | |
| tree | 58a716263f941ae0eaecf5235fae0456df32c147 | |
| parent | 99c6b87c1a1e6b01fd3f92e043a7100ae3b2f0d4 (diff) | |
| download | zcatch-02db5bfe6626b0e6d480c59110816624083790ce.tar.gz zcatch-02db5bfe6626b0e6d480c59110816624083790ce.zip | |
decreased the height of the scoreboard a bit. Closes #417
| -rw-r--r-- | src/game/client/components/scoreboard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/components/scoreboard.cpp b/src/game/client/components/scoreboard.cpp index afc87ef8..36c847c8 100644 --- a/src/game/client/components/scoreboard.cpp +++ b/src/game/client/components/scoreboard.cpp @@ -123,13 +123,13 @@ void CScoreboard::RenderScoreboard(float x, float y, float w, int Team, const ch return; //float ystart = y; - float h = 750.0f; + float h = 740.0f; Graphics()->BlendNormal(); Graphics()->TextureSet(-1); Graphics()->QuadsBegin(); Graphics()->SetColor(0,0,0,0.5f); - RenderTools()->DrawRoundRect(x-10.f, y-10.f, w, h, 17.0f); + RenderTools()->DrawRoundRect(x-10.f, y, w, h, 17.0f); Graphics()->QuadsEnd(); // render title |