Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 12, 2007
1 parent 3eff1b5 commit e70cad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_surface.c
Expand Up @@ -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;
Expand Down

0 comments on commit e70cad1

Please sign in to comment.