Commit e7a82e9f authored by Sam Lantinga's avatar Sam Lantinga

indent

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402597
parent b88bb33e
...@@ -568,7 +568,7 @@ SDL_FillRect(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color) ...@@ -568,7 +568,7 @@ SDL_FillRect(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color)
dstrect->x * dst->format->BytesPerPixel; dstrect->x * dst->format->BytesPerPixel;
if (dst->format->palette || (color == 0)) { if (dst->format->palette || (color == 0)) {
x = dstrect->w * dst->format->BytesPerPixel; 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) if (!color && !((uintptr_t) row & 3) && !(x & 3)
&& !(dst->pitch & 3)) { && !(dst->pitch & 3)) {
int n = x >> 2; int n = x >> 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment