summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2017-04-15 00:09:31 +0200
committer/dev/humancontroller <devhc@example.com>2017-04-15 17:24:19 +0200
commitc5a108ee2ab638a355df20391f33a578e2386284 (patch)
tree8d3d5f6361d643bf7b1215a74fba4da258ae1342
parent20408b853cfd427b394ac2acd7b268836bd3de3f (diff)
define ^0 as grey
patch by benmachine
-rw-r--r--src/qcommon/q_math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/q_math.c b/src/qcommon/q_math.c
index 196d2f5..0b56f4f 100644
--- a/src/qcommon/q_math.c
+++ b/src/qcommon/q_math.c
@@ -50,7 +50,7 @@ vec4_t colorDkGrey = {0.25, 0.25, 0.25, 1};
vec4_t g_color_table[8] =
{
- {0.0, 0.0, 0.0, 1.0},
+ {0.2, 0.2, 0.2, 1.0},
{1.0, 0.0, 0.0, 1.0},
{0.0, 1.0, 0.0, 1.0},
{1.0, 1.0, 0.0, 1.0},