Cleanup: unused defines

This commit is contained in:
Campbell Barton 2014-08-08 02:07:15 +10:00
parent 0e9c677343
commit 29eb567288

@ -168,14 +168,10 @@ typedef struct PreviewImage {
#ifdef __BIG_ENDIAN__
/* big endian */
# define MAKE_ID2(c, d) ( (c)<<8 | (d) )
# define MOST_SIG_BYTE 0
# define BBIG_ENDIAN
# define MAKE_ID2(c, d) ((c) << 8 | (d))
#else
/* little endian */
# define MAKE_ID2(c, d) ( (d)<<8 | (c) )
# define MOST_SIG_BYTE 1
# define BLITTLE_ENDIAN
# define MAKE_ID2(c, d) ((d) << 8 | (c))
#endif
/* ID from database */