From c6944b8279f7c0e15d8ccbddc009c5df3393291e Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 7 Jun 2006 06:28:30 +0000 Subject: [PATCH] fix typo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6430 d7cf8633-e32d-0410-b094-e92efae38249 --- image.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/image.c b/image.c index 3899e1e2..1bc4a85d 100644 --- a/image.c +++ b/image.c @@ -1358,11 +1358,11 @@ void Image_MipReduce(const unsigned char *in, unsigned char *out, int *width, in { Con_Printf ("Image_Resample: 3D resampling not supported\n"); if (*width > destwidth) - width >>= 1; + *width >>= 1; if (*height > destheight) - height >>= 1; + *height >>= 1; if (*depth > destdepth) - depth >>= 1; + *depth >>= 1; return; } nextrow = *width * bytesperpixel; -- 2.39.2