Commit 7c7801f1663cc02cfa59691c5d7eaf070ceb8d59

Ozkan Sezer 2019-10-21T10:20:25

Fix typo with __MIPSEB__ preprocessor check (bug #4836.) Patch from Simon Howard

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/SDL_endian.h b/include/SDL_endian.h
index 54d5d48..9d9d079 100644
--- a/include/SDL_endian.h
+++ b/include/SDL_endian.h
@@ -45,7 +45,7 @@
 #else /* __linux__ */
 #if defined(__hppa__) || \
     defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
-    (defined(__MIPS__) && defined(__MISPEB__)) || \
+    (defined(__MIPS__) && defined(__MIPSEB__)) || \
     defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \
     defined(__sparc__)
 #define SDL_BYTEORDER   SDL_BIG_ENDIAN