mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Check for __ARM_NEON__ and _M_ARM64
- Its absence was causing certain MSVC builds to fail with the #error directive
This commit is contained in:
parent
082cefa133
commit
972c539869
2
deps/dr/dr_mp3.h
vendored
2
deps/dr/dr_mp3.h
vendored
@ -365,7 +365,7 @@ test_nosimd:
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
#elif defined(__ARM_NEON) || defined(__aarch64__)
|
||||
#elif defined(__ARM_NEON) || defined(__aarch64__) || defined(__ARM_NEON__) || defined(_M_ARM64)
|
||||
#include <arm_neon.h>
|
||||
#define DRMP3_HAVE_SIMD 1
|
||||
#define DRMP3_VSTORE vst1q_f32
|
||||
|
Loading…
x
Reference in New Issue
Block a user