diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-26 21:00:52 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-26 21:00:52 +0000 |
| commit | 1a08dac1bbfe945a7dcef3d3e2179c6c9723571a (patch) | |
| tree | 90da79936abe66a5bf109c92f3fea26d2d128ca9 | |
| parent | dd9118573d521fe6b382b1248bc7529f38bdec4f (diff) | |
| download | zcatch-1a08dac1bbfe945a7dcef3d3e2179c6c9723571a.tar.gz zcatch-1a08dac1bbfe945a7dcef3d3e2179c6c9723571a.zip | |
made the mini scorehud more transparent
| -rw-r--r-- | src/game/client/game_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index 8c2ff777..2651bfc3 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -2530,9 +2530,9 @@ void render_game() gfx_texture_set(-1); gfx_quads_begin(); if(t == 0) - gfx_setcolor(1,0,0,0.5f); + gfx_setcolor(1,0,0,0.25f); else - gfx_setcolor(0,0,1,0.5f); + gfx_setcolor(0,0,1,0.25f); draw_round_rect(400-40, 300-40-15+t*20, 50, 18, 5.0f); gfx_quads_end(); |