foxygit / doom Log in
commit b2206374b80cfe540a0dfdc244d20cafa927ebfb
Author:     njankowski <njankowski@users.noreply.github.com>
AuthorDate: Fri Jan 22 16:33:50 2016 -0500
Commit:     njankowski <njankowski@users.noreply.github.com>
CommitDate: Fri Jan 22 16:33:50 2016 -0500

    Fix typo and remove unused symbol. Fixes #651
---
 src/i_swap.h | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/i_swap.h b/src/i_swap.h
index 835cdc26..3dee8e3f 100644
--- a/src/i_swap.h
+++ b/src/i_swap.h
@@ -35,9 +35,7 @@

 // Defines for checking the endianness of the system.

-#if SDL_BYTEORDER == SYS_LIL_ENDIAN
-#define SYS_LITTLE_ENDIAN
-#elif SDL_BYTEORDER == SYS_BIG_ENDIAN
+#if SDL_BYTEORDER == SDL_BIG_ENDIAN
 #define SYS_BIG_ENDIAN
 #endif