mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04: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
1 changed files with 1 additions and 1 deletions
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…
Add table
Reference in a new issue