summaryrefslogtreecommitdiff
path: root/include/SDL_endian.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2006-03-06 16:37:18 +0000
committerSam Lantinga <slouken@libsdl.org>2006-03-06 16:37:18 +0000
commitddf8eb57fc6e6b954e1173a50876a7af1410e829 (patch)
treeed0a675d5700ec1df5aebb742d876c3367e08dd1 /include/SDL_endian.h
parentc27132b50d04334ddd36bfcb1a6582523b240789 (diff)
Get Microsoft's preprocessor symbols in there
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401479
Diffstat (limited to 'include/SDL_endian.h')
-rw-r--r--include/SDL_endian.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SDL_endian.h b/include/SDL_endian.h
index 1fb772e2..6257a649 100644
--- a/include/SDL_endian.h
+++ b/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