From 441ef5c97fbffe01492ccf091e6fc96414c77838 Mon Sep 17 00:00:00 2001 From: gewlitys Date: Sun, 16 Mar 2003 16:14:05 +0000 Subject: [PATCH] minor cleanups continue git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@890 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/sdl/canvas.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sc2/src/sc2code/libs/graphics/sdl/canvas.c b/sc2/src/sc2code/libs/graphics/sdl/canvas.c index 7689e3d2e..d0bd2935a 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/canvas.c +++ b/sc2/src/sc2code/libs/graphics/sdl/canvas.c @@ -678,10 +678,10 @@ TFB_DrawCanvas_Rescale_Trilinear (TFB_Canvas src_canvas, TFB_Canvas dest_canvas, else if (src->format->BytesPerPixel == 4 && dst->format->BytesPerPixel == 4 && mipmap->format->BytesPerPixel == 4) { - Uint32 fsx0 = (int)(65536.0f * (float)src->w / w); - Uint32 fsy0 = (int)(65536.0f * (float)src->h / h); - Uint32 fsx1 = (int)(65536.0f * (float)mipmap->w / w); - Uint32 fsy1 = (int)(65536.0f * (float)mipmap->h / h); + int fsx0 = (int)(65536.0f * (float)src->w / w); + int fsy0 = (int)(65536.0f * (float)src->h / h); + int fsx1 = (int)(65536.0f * (float)mipmap->w / w); + int fsy1 = (int)(65536.0f * (float)mipmap->h / h); int sx0 = 0, sy0 = 0, sx1 = 0, sy1 = 0; int x, y;