From 242dcf9cf846f773bc5ce76b7a616aeab91bab51 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 29 May 2013 14:23:34 +0100 Subject: [PATCH] Suppress warning --- code/renderergl2/tr_bsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/code/renderergl2/tr_bsp.c b/code/renderergl2/tr_bsp.c index 1825b19c..04170919 100644 --- a/code/renderergl2/tr_bsp.c +++ b/code/renderergl2/tr_bsp.c @@ -3376,6 +3376,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];