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

Commit

Permalink
esigra 2010-04-17 03:53:57 PDT
Browse files Browse the repository at this point in the history
If this header file is supposed to be includable from C++ code, the code should
of course use one of the SDL_*_cast macros from SDL_stdinc.h.
  • Loading branch information
slouken committed Apr 23, 2010
1 parent 3076346 commit e5f7b08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/SDL_endian.h
Expand Up @@ -103,7 +103,7 @@ SDL_Swap16(Uint16 x)
static __inline__ Uint16
SDL_Swap16(Uint16 x)
{
return (Uint16)((x << 8) | (x >> 8));
return SDL_static_cast(Uint16, ((x << 8) | (x >> 8)));
}
#endif

Expand Down Expand Up @@ -143,8 +143,8 @@ SDL_Swap32(Uint32 x)
static __inline__ Uint32
SDL_Swap32(Uint32 x)
{
return (Uint32)((x << 24) | ((x << 8) & 0x00FF0000) |
((x >> 8) & 0x0000FF00) | (x >> 24));
return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) |
((x >> 8) & 0x0000FF00) | (x >> 24)));
}
#endif

Expand Down

0 comments on commit e5f7b08

Please sign in to comment.