Ensure LOVE_SIMD_NEON is defined when compiling for Windows ARM64

This commit is contained in:
Miku AuahDark
2020-12-03 13:53:41 +08:00
parent c8eeefba51
commit 6301b690af
+1 -1
View File
@@ -71,7 +71,7 @@
#endif
// NEON instructions.
#if defined(__ARM_NEON)
#if defined(__ARM_NEON) || defined(_M_ARM64)
# define LOVE_SIMD_NEON
#endif