SDL_intrin.h: fixed typo in AVX2 checks.

main
Ozkan Sezer 2023-03-21 20:22:20 +03:00 committed by Ozkan Sezer
parent c30903882b
commit 5d4d11f92f
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ _m_prefetch(void *__P)
# define SDL_AVX_INTRINSICS 1
# include <immintrin.h>
# endif
# if (defined(_MSC_VER) || defined(__AVX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_AVX2)
# if (defined(_MSC_VER) || defined(__AVX2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_AVX2)
# define SDL_AVX2_INTRINSICS 1
# include <immintrin.h>
# endif