From 2450db9dec2eb5762e802f92b451b0cb8aafcb6e Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Mon, 22 Oct 2012 21:41:41 -0700 Subject: [PATCH] Fixed unused-but-set-variable warning. --- 3rdparty/stb_image/stb_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/stb_image/stb_image.c b/3rdparty/stb_image/stb_image.c index be2f2141..380e46fa 100644 --- a/3rdparty/stb_image/stb_image.c +++ b/3rdparty/stb_image/stb_image.c @@ -2951,7 +2951,7 @@ static int shiftsigned(int v, int shift, int bits) static stbi_uc *bmp_load(stbi *s, int *x, int *y, int *comp, int req_comp) { uint8 *out; - unsigned int mr=0,mg=0,mb=0,ma=0, fake_a=0; + unsigned int mr=0,mg=0,mb=0,ma=0; stbi_uc pal[256][4]; int psize=0,i,j,compress=0,width; int bpp, flip_vertically, pad, target, offset, hsz;