diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-19 21:07:14 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-19 21:07:14 +0000 |
| commit | 6987e6d55609630abaedfa09b1c807ec27c6a50f (patch) | |
| tree | f8dd5b363f22efc0181020ffe631f262d9bc0e82 | |
| parent | 8c93744eb3bce4326f5dd287171ed9d780745264 (diff) | |
| download | zcatch-6987e6d55609630abaedfa09b1c807ec27c6a50f.tar.gz zcatch-6987e6d55609630abaedfa09b1c807ec27c6a50f.zip | |
tweaked blue chat text
| -rw-r--r-- | src/game/client/gc_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/gc_client.cpp b/src/game/client/gc_client.cpp index a9e5c75d..5c93bc3b 100644 --- a/src/game/client/gc_client.cpp +++ b/src/game/client/gc_client.cpp @@ -2802,9 +2802,9 @@ void render_game() else if(chat_lines[r].team) gfx_pretty_text_color(0.5f,1,0.5f,1); // team message else if(chat_lines[r].name_color == 0) - gfx_pretty_text_color(1.0f,0.5f,0.5f,1); // + gfx_pretty_text_color(1.0f,0.5f,0.5f,1); // red else if(chat_lines[r].name_color == 1) - gfx_pretty_text_color(0.5f,0.5f,1.0f,1); // + gfx_pretty_text_color(0.7f,0.7f,1.0f,1); // blue // render line int lines = int(gfx_pretty_text_width(10, chat_lines[r].text, -1)) / 300 + 1; |