SDL: _BitScanReverse was introduced in Microsoft Visual Studio 2005

https://github.com/libsdl-org/SDL/commit/c8f3f1b461e1f417adf687f02c47c2afbaf6f4d1

From c8f3f1b461e1f417adf687f02c47c2afbaf6f4d1 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Thu, 9 Jan 2025 02:46:48 +0100
Subject: [PATCH] _BitScanReverse was introduced in Microsoft Visual Studio
 2005

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

diff --git a/include/SDL3/SDL_bits.h b/include/SDL3/SDL_bits.h
index 0837f14bbac98..6657e6b256a59 100644
--- a/include/SDL3/SDL_bits.h
+++ b/include/SDL3/SDL_bits.h
@@ -78,7 +78,7 @@ SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x)
         return -1;
     }
     return _SDL_bsr_watcom(x);
-#elif defined(_MSC_VER)
+#elif defined(_MSC_VER) && _MSC_VER >= 1400
     unsigned long index;
     if (_BitScanReverse(&index, x)) {
         return (int)index;