This commit is contained in:
Jaime Passos 2019-09-12 16:12:31 -03:00
parent acc8dae274
commit 2a04ac69e1
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@
// 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)))
#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))