diff options
author | Tim Angus <tim@ngus.net> | 2013-05-29 14:23:34 +0100 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-05-31 23:10:52 +0100 |
commit | 44886a355b9aae4e05fb0e3202613f6323217b57 (patch) | |
tree | cacc29848cf208b8195e497eb65c52e923fd5e9f /src/renderergl2 | |
parent | f0278d0381ac57be161d7d4f136a9571b35eaf05 (diff) |
Suppress warning
Diffstat (limited to 'src/renderergl2')
-rw-r--r-- | src/renderergl2/tr_bsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/renderergl2/tr_bsp.c b/src/renderergl2/tr_bsp.c index dd8887b0..6cbd9d21 100644 --- a/src/renderergl2/tr_bsp.c +++ b/src/renderergl2/tr_bsp.c @@ -3377,6 +3377,7 @@ void RE_LoadWorldMap( const char *name ) { gridLightCol[0] = ByteToFloat(data[3]); gridLightCol[1] = ByteToFloat(data[4]); gridLightCol[2] = ByteToFloat(data[5]); + (void)gridLightCol; // Suppress unused-but-set-variable warning lat = data[7]; lng = data[6]; |