diff options
author | Chris Robinson <[email protected]> | 2012-08-15 01:32:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-15 01:32:17 -0700 |
commit | 6ebeb3b4f76ad58b92d882e9cca762a54a85294d (patch) | |
tree | 8bd02b958d17586b06a29effa0746ce9f7b5ff59 /Alc | |
parent | 2e18baa3c8316a3e94f7b85293172b0e377db939 (diff) |
Check the correct macro for ARM Neon support
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/helpers.c | 2 |
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 |