diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-09-19 12:34:18 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-09-19 12:34:18 +0000 |
commit | 27d5346e9faf183f5bf9c8a92a47897998c9d60c (patch) | |
tree | 514bbdc7cdf07cde8ed50160226c776e360d270e /src/net/messageout.cpp | |
parent | 2c4d4ecc19fc8308b2772e4ffe6570ca362264d1 (diff) | |
download | mana-27d5346e9faf183f5bf9c8a92a47897998c9d60c.tar.gz mana-27d5346e9faf183f5bf9c8a92a47897998c9d60c.tar.bz2 mana-27d5346e9faf183f5bf9c8a92a47897998c9d60c.tar.xz mana-27d5346e9faf183f5bf9c8a92a47897998c9d60c.zip |
Mostly code cleanups related to commits in past two days.
* Replaced custom function FIND_PATH with AC_PATH_PROG, used for finding sdl-config.
* Removed -lphysfs from Makefile.am which should be added automatically already.
* Actually show the overweight message, and only show it once for each time weight
goes above half the max weight.
* Surfaces passed to SDL_BlitSurface shouldn't be locked according to the manual.
* Minimal fps limit is now 10 fps.
* Reverted change by Bertram that hardcoded the updatehost value.
Diffstat (limited to 'src/net/messageout.cpp')
-rw-r--r-- | src/net/messageout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp index e7928a4d..77819b63 100644 --- a/src/net/messageout.cpp +++ b/src/net/messageout.cpp @@ -24,8 +24,10 @@ #include "messageout.h" #include <string> -#include <SDL_net.h> +#include <SDL.h> +#if SDL_BYTEORDER == SDL_BIG_ENDIAN #include "win2mac.h" +#endif #include "network.h" #include "packet.h" @@ -73,7 +75,6 @@ void MessageOut::writeShort(short value) #else (*(short *)(mData + mPos)) = value; #endif - //SDLNet_Write16(value, &mData[mPos]); mPos += sizeof(short); out_size += sizeof(short); } @@ -86,7 +87,6 @@ void MessageOut::writeLong(long value) #else (*(long *)(mData + mPos)) = value; #endif - //SDLNet_Write32(value, &mData[mPos]); mPos += sizeof(long); out_size += sizeof(long); } |