Browse Source

Ensure LOVE_SIMD_NEON is defined when compiling for Windows ARM64

Miku AuahDark 4 years ago
parent
commit
6301b690af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/config.h

+ 1 - 1
src/common/config.h

@@ -71,7 +71,7 @@
 #endif
 #endif
 
 
 // NEON instructions.
 // NEON instructions.
-#if defined(__ARM_NEON)
+#if defined(__ARM_NEON) || defined(_M_ARM64)
 #	define LOVE_SIMD_NEON
 #	define LOVE_SIMD_NEON
 #endif
 #endif