summaryrefslogtreecommitdiff
path: root/src/net/network.cpp
diff options
context:
space:
mode:
authorDuane Bailey <nayryeliab@gmail.com>2005-09-17 21:35:26 +0000
committerDuane Bailey <nayryeliab@gmail.com>2005-09-17 21:35:26 +0000
commit3debd1554b39a6a2e790526fa02d56d1b81fda85 (patch)
tree360aed13b07b78d6260786cf28706b637037abdd /src/net/network.cpp
parent7eaa123ee5129ccd81ff169ada7665a812dee435 (diff)
downloadmana-client-3debd1554b39a6a2e790526fa02d56d1b81fda85.tar.gz
mana-client-3debd1554b39a6a2e790526fa02d56d1b81fda85.tar.bz2
mana-client-3debd1554b39a6a2e790526fa02d56d1b81fda85.tar.xz
mana-client-3debd1554b39a6a2e790526fa02d56d1b81fda85.zip
2005-09-17 Duane Bailey <nayryeliab@gmail.com>
* src/net/messagin.cpp, src/net/messageout.cpp, src/net/network.cpp: removed replaced MACOSX defines with big endian defines * src/graphics.cpp, src/graphics.h: added screenshot method * src/game.cpp: added code, so that when one presses 'alt-p' (for picture), it takes a screenshot and saves it to a png * src/Makefile.am, config.ac: added png library stuff
Diffstat (limited to 'src/net/network.cpp')
-rw-r--r--src/net/network.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/network.cpp b/src/net/network.cpp
index 4656a233..e5a0dead 100644
--- a/src/net/network.cpp
+++ b/src/net/network.cpp
@@ -30,7 +30,7 @@
#include "messagein.h"
#include "../log.h"
-#ifdef MACOSX
+#ifdef SDL_BYTEORDER == SDL_BIG_ENDIAN
#include "win2mac.h"
#endif
@@ -247,7 +247,7 @@ void flush()
unsigned short readWord(int pos)
{
-#ifdef MACOSX
+#ifdef SDL_BYTEORDER == SDL_BIG_ENDIAN
return DR_SwapTwoBytes((*(unsigned short*)(in+(pos))));
#else
return (*(unsigned short *)(in+(pos)));