stdafx.h
changeset 2984 225bffc79071
parent 2980 cd4b945c5517
child 3016 c63fb93fa1a0
--- a/stdafx.h	Sun Feb 05 20:36:36 2006 +0000
+++ b/stdafx.h	Sun Feb 05 23:12:23 2006 +0000
@@ -205,21 +205,23 @@
   static inline uint16 TO_LE16(uint16 x) { return BSWAP16(x); }
   static inline uint32 FROM_LE32(uint32 x) { return BSWAP32(x); }
   static inline uint16 FROM_LE16(uint16 x) { return BSWAP16(x); }
-# define TO_BE32(x) (x)
-# define TO_BE16(x) (x)
+# define TO_BE32(x)   (x)
+# define TO_BE16(x)   (x)
 # define FROM_BE32(x) (x)
 # define FROM_BE16(x) (x)
-# define TO_BE32X(x) (x)
+# define TO_LE32X(x)  BSWAP32(x)
+# define TO_BE32X(x)  (x)
 #else
   static inline uint32 TO_BE32(uint32 x) { return BSWAP32(x); }
   static inline uint16 TO_BE16(uint16 x) { return BSWAP16(x); }
   static inline uint32 FROM_BE32(uint32 x) { return BSWAP32(x); }
   static inline uint16 FROM_BE16(uint16 x) { return BSWAP16(x); }
-# define TO_LE32(x) (x)
-# define TO_LE16(x) (x)
-# define TO_BE32X(x) BSWAP32(x)
+# define TO_LE32(x)   (x)
+# define TO_LE16(x)   (x)
 # define FROM_LE32(x) (x)
 # define FROM_LE16(x) (x)
+# define TO_LE32X(x)  (x)
+# define TO_BE32X(x)  BSWAP32(x)
 #endif /* TTD_BIG_ENDIAN */
 
 #if !defined(GAME_DATA_DIR)