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

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 5, 2008
1 parent 936fb03 commit df16564
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/video/SDL_fill.c
Expand Up @@ -31,10 +31,10 @@
#ifdef _MSC_VER
#define SSE_BEGIN \
__m128 c128; \
c128.m128_u32[0] = color; \
c128.m128_u32[1] = color; \
c128.m128_u32[2] = color; \
c128.m128_u32[3] = color;
c128.m128_u32[0] = color; \
c128.m128_u32[1] = color; \
c128.m128_u32[2] = color; \
c128.m128_u32[3] = color;
#else
#define SSE_BEGIN \
DECLARE_ALIGNED(Uint32, cccc[4], 16); \
Expand Down Expand Up @@ -71,7 +71,7 @@ SDL_FillRect##bpp##SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
if (adjust < 16) { \
n -= adjust; \
adjust /= bpp; \
while(adjust--) { \
while (adjust--) { \
*((type *)p) = (type)color; \
p += bpp; \
} \
Expand All @@ -81,7 +81,7 @@ SDL_FillRect##bpp##SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
if (n & 63) { \
int remainder = (n & 63); \
remainder /= bpp; \
while(remainder--) { \
while (remainder--) { \
*((type *)p) = (type)color; \
p += bpp; \
} \
Expand Down Expand Up @@ -136,7 +136,7 @@ SDL_FillRect##bpp##MMX(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
if (adjust < 8) { \
n -= adjust; \
adjust /= bpp; \
while(adjust--) { \
while (adjust--) { \
*((type *)p) = (type)color; \
p += bpp; \
} \
Expand All @@ -146,7 +146,7 @@ SDL_FillRect##bpp##MMX(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
if (n & 63) { \
int remainder = (n & 63); \
remainder /= bpp; \
while(remainder--) { \
while (remainder--) { \
*((type *)p) = (type)color; \
p += bpp; \
} \
Expand Down

0 comments on commit df16564

Please sign in to comment.