diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/messagein.cpp | 6 | ||||
-rw-r--r-- | src/net/eathena/messageout.cpp | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/net/eathena/messagein.cpp b/src/net/eathena/messagein.cpp index b32db3060..7cc1bd3a3 100644 --- a/src/net/eathena/messagein.cpp +++ b/src/net/eathena/messagein.cpp @@ -29,14 +29,12 @@ #include "utils/stringutils.h" +#ifndef SDL_BIG_ENDIAN #include <SDL_endian.h> +#endif // SDL_BYTEORDER #include "debug.h" -#ifndef SDL_BYTEORDER -#error missing SDL_endian.h -#endif // SDL_BYTEORDER - namespace EAthena { diff --git a/src/net/eathena/messageout.cpp b/src/net/eathena/messageout.cpp index 6cbcba027..66585cc58 100644 --- a/src/net/eathena/messageout.cpp +++ b/src/net/eathena/messageout.cpp @@ -30,7 +30,7 @@ #include "debug.h" -#ifndef SDL_BYTEORDER +#ifndef SDL_BIG_ENDIAN #error missing SDL_endian.h #endif // SDL_BYTEORDER |