From e7f2216476f144f66d22342cc6f18e80aaec217f Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 30 Aug 2003 00:36:20 +0000 Subject: [PATCH] *** empty log message *** --- src/video/SDL_blit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video/SDL_blit.c b/src/video/SDL_blit.c index bd9bcd5fe..54fdcd2a9 100644 --- a/src/video/SDL_blit.c +++ b/src/video/SDL_blit.c @@ -166,7 +166,9 @@ static void SDL_BlitCopy(SDL_BlitInfo *info) Uint8 *src, *dst; int w, h; int srcskip, dstskip; +#if defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT) Uint32 f; +#endif w = info->d_width*info->dst->BytesPerPixel; h = info->d_height;