From 5b7d7124f8702f55d2c0594d5e9c12c2c80dab1d Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sat, 14 Feb 2015 01:41:26 +0100 Subject: silence some MSVC warnings --- src/qcommon/q_math.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/qcommon') 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}, }; -- cgit