SDL: SDL_intrin.h: fixed disabler macro name for SSE4.1

From 260bb1c661c72431142027f12b64e77f4b12c5e5 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Tue, 21 Mar 2023 12:18:20 +0300
Subject: [PATCH] SDL_intrin.h: fixed disabler macro name for SSE4.1

---
 include/SDL3/SDL_intrin.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/SDL3/SDL_intrin.h b/include/SDL3/SDL_intrin.h
index 09172b79fe31..a30c71a45e5c 100644
--- a/include/SDL3/SDL_intrin.h
+++ b/include/SDL3/SDL_intrin.h
@@ -132,7 +132,7 @@ _m_prefetch(void *__P)
 #  define SDL_SSE3_INTRINSICS 1
 #  include <pmmintrin.h>
 # endif
-# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE42)
+# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE41)
 #  define SDL_SSE4_1_INTRINSICS 1
 #  include <smmintrin.h>
 # endif