summaryrefslogtreecommitdiff
path: root/src/qcommon
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2015-02-14 01:41:26 +0100
committer/dev/humancontroller <devhc@example.com>2017-02-07 17:34:58 +0100
commit5b7d7124f8702f55d2c0594d5e9c12c2c80dab1d (patch)
tree5bce3ccee0125a4b2e5dce3faa842d7c8153a85a /src/qcommon
parent67b417c41984ad49d1c13f31832eaa5fa825bd3b (diff)
silence some MSVC warnings
Diffstat (limited to 'src/qcommon')
-rw-r--r--src/qcommon/q_math.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qcommon/q_math.c b/src/qcommon/q_math.c
index f6e215b9..c34eff26 100644
--- a/src/qcommon/q_math.c
+++ b/src/qcommon/q_math.c
@@ -50,14 +50,14 @@ vec4_t colorDkGrey = {0.25, 0.25, 0.25, 1};
vec4_t g_color_table[8] =
{
- {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},
- {0.0, 0.0, 1.0, 1.0},
- {0.0, 1.0, 1.0, 1.0},
- {1.0, 0.0, 1.0, 1.0},
- {1.0, 1.0, 1.0, 1.0},
+ {0.2f, 0.2f, 0.2f, 1.0f},
+ {1.0f, 0.0f, 0.0f, 1.0f},
+ {0.0f, 1.0f, 0.0f, 1.0f},
+ {1.0f, 1.0f, 0.0f, 1.0f},
+ {0.0f, 0.0f, 1.0f, 1.0f},
+ {0.0f, 1.0f, 1.0f, 1.0f},
+ {1.0f, 0.0f, 1.0f, 1.0f},
+ {1.0f, 1.0f, 1.0f, 1.0f},
};