瀏覽代碼

Ensure LOVE_SIMD_NEON is defined when compiling for Windows ARM64

Miku AuahDark 4 年之前
父節點
當前提交
6301b690af
共有 1 個文件被更改,包括 1 次插入1 次删除
  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