diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-06 07:28:31 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:41 +0000 |
commit | 9cb4992260d8ab7f4987257ab0c5a15c42b78d2e (patch) | |
tree | 40d15dac1f52d763b197148b929531f0d8fc241e /src/qcommon | |
parent | 16e3d9f955fd7feb25b9c2cb1a3884123bdb8c76 (diff) |
* (bug 3237) Black colour redefined to grey (benmachine)
Diffstat (limited to 'src/qcommon')
-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 ba910a37..730ea6b5 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}, |