Commit 49119e31 authored by Sam Lantinga's avatar Sam Lantinga

fixed formatting

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403291
parent b8cbb6cd
......@@ -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; \
} \
......@@ -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; \
} \
......@@ -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; \
} \
......@@ -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; \
} \
......
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