From acccc71f2795303d1d04a2fae0cc6d7b3e26906e Mon Sep 17 00:00:00 2001 From: Sylvain Becker Date: Sat, 2 Jan 2021 22:31:44 +0100 Subject: [PATCH] Fixed bug 5436 - MSVC 2019 ARM64 build fails to compile SDL_stretch.c --- src/video/SDL_stretch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_stretch.c b/src/video/SDL_stretch.c index fcae0c74e..d8bb46e0c 100644 --- a/src/video/SDL_stretch.c +++ b/src/video/SDL_stretch.c @@ -613,7 +613,7 @@ scale_mat(const Uint32 *src, int src_w, int src_h, int src_pitch, #endif /* TODO: this didn't compile on Window10 universal package last time I tried .. */ -#if defined(__WINRT__) +#if defined(__WINRT__) || defined(_MSC_VER) # if defined(HAVE_NEON_INTRINSICS) # undef HAVE_NEON_INTRINSICS # endif