This was lost

This commit is contained in:
Sally Coolatta 2020-11-10 19:49:21 -05:00
parent fc934b38e1
commit 1f1607cc6d

View file

@ -44,4 +44,13 @@
#define MSBF_LONG SWAP_LONG
#endif
// Big to little endian
#ifdef SRB2_LITTLE_ENDIAN
#define BIGENDIAN_LONG(x) ((INT32)(((x)>>24)&0xff)|(((x)<<8)&0xff0000)|(((x)>>8)&0xff00)|(((x)<<24)&0xff000000))
#define BIGENDIAN_SHORT(x) ((INT16)(((x)>>8)|((x)<<8)))
#else
#define BIGENDIAN_LONG(x) ((INT32)(x))
#define BIGENDIAN_SHORT(x) ((INT16)(x))
#endif
#endif