Skip to content

Commit

Permalink
Fix typo with __MIPSEB__ preprocessor check (bug #4836.)
Browse files Browse the repository at this point in the history
Patch from Simon Howard
  • Loading branch information
sezero committed Oct 21, 2019
1 parent 9ececee commit 7c7801f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SDL_endian.h
Expand Up @@ -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
Expand Down

0 comments on commit 7c7801f

Please sign in to comment.