Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Get Microsoft's preprocessor symbols in there
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
include/SDL_endian.h
|
@@ -33,9 +33,9 @@ |
|
|
|
|
|
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ |
|
|
#if defined(__hppa__) || \ |
|
|
defined(__m68k__) || defined(mc68000) || \ |
|
|
defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ |
|
|
(defined(__MIPS__) && defined(__MISPEB__)) || \ |
|
|
defined(__ppc__) || defined(__POWERPC__) || \ |
|
|
defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \ |
|
|
defined(__sparc__) |
|
|
#define SDL_BYTEORDER SDL_BIG_ENDIAN |
|
|
#else |
|
|