diff options
Diffstat (limited to 'src/renderergl1/tr_image.c')
-rw-r--r-- | src/renderergl1/tr_image.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/renderergl1/tr_image.c b/src/renderergl1/tr_image.c index 082936a7..665038c9 100644 --- a/src/renderergl1/tr_image.c +++ b/src/renderergl1/tr_image.c @@ -327,7 +327,6 @@ static void ResampleTexture( unsigned *in, int inwidth, int inheight, unsigned * for (i=0 ; i<outheight ; i++, out += outwidth) { inrow = in + inwidth*(int)((i+0.25)*inheight/outheight); inrow2 = in + inwidth*(int)((i+0.75)*inheight/outheight); - frac = fracstep >> 1; for (j=0 ; j<outwidth ; j++) { pix1 = (byte *)inrow + p1[j]; pix2 = (byte *)inrow + p2[j]; |