From 6e383d8867081d3ec6b57b4d2f171a4382e83195 Mon Sep 17 00:00:00 2001 From: Duane Bailey Date: Thu, 22 Sep 2005 23:28:58 +0000 Subject: removed win2mac support --- src/net/messagein.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/net/messagein.cpp') diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index c599a453..e3f8c28e 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -25,9 +25,7 @@ #include #include -#if SDL_BYTEORDER == SDL_BIG_ENDIAN -#include "win2mac.h" -#endif +#include #define MAKEWORD(low,high) \ ((unsigned short)(((unsigned char)(low)) | \ @@ -56,7 +54,7 @@ MessageIn::readShort() assert(mPos + 2 <= mLength); mPos += 2; #if SDL_BYTEORDER == SDL_BIG_ENDIAN - return DR_SwapTwoBytes(*(short*)(mData + (mPos - 2))); + return SDL_Swap16(*(short*)(mData + (mPos - 2))); #else return (*(short*)(mData + (mPos - 2))); #endif @@ -68,7 +66,7 @@ MessageIn::readLong() assert(mPos + 4 <= mLength); mPos += 4; #if SDL_BYTEORDER == SDL_BIG_ENDIAN - return DR_SwapFourBytes(*(long*)(mData + (mPos - 4))); + return SDL_Swap32(*(long*)(mData + (mPos - 4))); #else return (*(long*)(mData + (mPos - 4))); #endif -- cgit v1.2.3-70-g09d2