Skip to content

Commit dd5aff3

Browse files
committed
SDL_fillrect.c: updated SSE_BEGIN macro for windows clang-cl
from a patchset by Vladislav Dmitrievich Turbanov: #4062
1 parent 0ed1713 commit dd5aff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/video/SDL_fillrect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#ifdef __SSE__
2929
/* *INDENT-OFF* */
3030

31-
#ifdef _MSC_VER
31+
#if defined(_MSC_VER) && !defined(__clang__)
3232
#define SSE_BEGIN \
3333
__m128 c128; \
3434
c128.m128_u32[0] = color; \

0 commit comments

Comments
 (0)