aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorJan Niklas Hasse <[email protected]>2018-06-20 10:40:25 +0200
committerJan Niklas Hasse <[email protected]>2018-06-20 21:36:33 +0200
commita80ab012270bc38f6e07f535e445051af3b85349 (patch)
treead1bc15698bef8c935346dc6e9c702035d8c41f1 /OpenAL32
parent73e08e51ba3eb156240c4b240829d85548d25f5a (diff)
Correctly check byte order for newer Android compiler, fix #203
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 093f7950..74dba1ad 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -184,8 +184,8 @@ inline int fallback_ctz64(ALuint64 value)
#define CTZ64 fallback_ctz64
#endif
-#if defined(__BYTE_ORDER__) && defined(__LITTLE_ENDIAN__)
-#define IS_LITTLE_ENDIAN (__BYTE_ORDER__ == __LITTLE_ENDIAN__)
+#if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__)
+#define IS_LITTLE_ENDIAN (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#else
static const union {
ALuint u;