Skip to content

Commit

Permalink
Use SDL's byte order check, just to be sure
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 16, 2009
1 parent 1ac819f commit 5ed7eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/quartz/SDL_QuartzVideo.m
Expand Up @@ -885,7 +885,7 @@ other blitting while waiting on the VBL (and hence results in higher framerates)
}
else
{
#ifdef __LITTLE_ENDIAN__
#if SDL_BYTEORDER == SDL_LITTLE_ENDIAN
rmask = 0x0000FF00;
gmask = 0x00FF0000;
bmask = 0xFF000000;
Expand Down

0 comments on commit 5ed7eee

Please sign in to comment.