summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/CommonFuncs.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/Common/CommonFuncs.h b/Source/Core/Common/CommonFuncs.h
index f46b72686d..4dc359ee3c 100644
--- a/Source/Core/Common/CommonFuncs.h
+++ b/Source/Core/Common/CommonFuncs.h
@@ -134,9 +134,7 @@ inline u64 swap64(u64 _data)
{
return _byteswap_uint64(_data);
}
-#elif __linux__ && !(ANDROID && _M_ARM_64)
-// Android NDK r10c has broken builtin byte swap routines
-// Disabled for now.
+#elif __linux__
inline u16 swap16(u16 _data)
{
return bswap_16(_data);