From e70cad15b3fb3bc418f40e9c975aa5e979b4f6c1 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 12 Aug 2007 18:44:49 +0000 Subject: [PATCH] indent --- src/video/SDL_surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c index 4585f2366..948a5d68a 100644 --- a/src/video/SDL_surface.c +++ b/src/video/SDL_surface.c @@ -568,7 +568,7 @@ SDL_FillRect(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color) dstrect->x * dst->format->BytesPerPixel; if (dst->format->palette || (color == 0)) { x = dstrect->w * dst->format->BytesPerPixel; -#ifndef __MACOSX__ /* memset() is optimized on Mac OS X */ +#ifndef __MACOSX__ /* memset() is optimized on Mac OS X */ if (!color && !((uintptr_t) row & 3) && !(x & 3) && !(dst->pitch & 3)) { int n = x >> 2;