Browse Source

SDL: Apply revision ea71847e4e3c to fix Windows ARM64 compilation.

https://hg.libsdl.org/SDL/rev/ea71847e4e3c
Miku AuahDark 5 years ago
parent
commit
6e7f690ba1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libs/SDL2/include/SDL_cpuinfo.h

+ 2 - 2
libs/SDL2/include/SDL_cpuinfo.h

@@ -73,8 +73,8 @@
 #      define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
 #    endif
 #    if defined (_M_ARM64)
-#      include <armintr.h>
-#      include <arm_neon.h>
+#      include <arm64intr.h>
+#      include <arm64_neon.h>
 #      define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
 #    endif
 #  endif