diff options
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 |
commit | c5a108ee2ab638a355df20391f33a578e2386284 (patch) | |
tree | 8d3d5f6361d643bf7b1215a74fba4da258ae1342 /src | |
parent | 20408b853cfd427b394ac2acd7b268836bd3de3f (diff) |
define ^0 as grey
patch by benmachine
Diffstat (limited to 'src')
-rw-r--r-- | src/qcommon/q_math.c | 2 |
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}, |