Removed the endianness detection macros (were not used)

This commit is contained in:
Laurent Gomila 2012-11-28 20:44:03 +01:00
parent 59a68f0a51
commit 4afe83d934

View File

@ -67,23 +67,6 @@
#endif
////////////////////////////////////////////////////////////
// Identify the endianness
////////////////////////////////////////////////////////////
#if defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || (defined(__MIPS__) && defined(__MISPEB__)) || \
defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || defined(__sparc__) || defined(__hppa__)
// Big endian
#define SFML_ENDIAN_BIG
#else
// Little endian
#define SFML_ENDIAN_LITTLE
#endif
////////////////////////////////////////////////////////////
// Define a portable debug macro
////////////////////////////////////////////////////////////