aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/helpers.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-08-15 01:32:17 -0700
committerChris Robinson <[email protected]>2012-08-15 01:32:17 -0700
commit6ebeb3b4f76ad58b92d882e9cca762a54a85294d (patch)
tree8bd02b958d17586b06a29effa0746ce9f7b5ff59 /Alc/helpers.c
parent2e18baa3c8316a3e94f7b85293172b0e377db939 (diff)
Check the correct macro for ARM Neon support
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r--Alc/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index b5a8363e..82bc5ec6 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -98,7 +98,7 @@ void FillCPUCaps(ALuint capfilter)
}
#endif
#endif
-#ifdef HAVE_ARM_NEON_H
+#ifdef HAVE_NEON
/* Assume Neon support if compiled with it */
caps |= CPU_CAP_NEON;
#endif