about summary refs log tree commit diff
path: root/src/engine/client
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-01 20:06:21 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-01 20:06:21 +0000
commitc36819b18d6e1b11f8bda1bdeb979df5c96bd2ce (patch)
tree1fdf1bc3fdc914905e97180e1351f371f4934dba /src/engine/client
parent08c4c8e0b71b577835eb9476ffc17626c94266ec (diff)
downloadzcatch-c36819b18d6e1b11f8bda1bdeb979df5c96bd2ce.tar.gz
zcatch-c36819b18d6e1b11f8bda1bdeb979df5c96bd2ce.zip
fixed fading of text borders correctly
Diffstat (limited to 'src/engine/client')
-rw-r--r--src/engine/client/ec_gfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/client/ec_gfx.c b/src/engine/client/ec_gfx.c
index 7cd64275..7c02a39f 100644
--- a/src/engine/client/ec_gfx.c
+++ b/src/engine/client/ec_gfx.c
@@ -977,7 +977,7 @@ float gfx_text_raw(void *font_set_v, float x, float y, float size, const char *t
 
         gfx_quads_begin();
         if (i == 0)
-            gfx_setcolor(0.0f, 0.0f, 0.0f, 0.3f);
+            gfx_setcolor(0.0f, 0.0f, 0.0f, 0.3f*text_a);
         else
             gfx_setcolor(text_r, text_g, text_b, text_a);