# HG changeset patch # User Sam Lantinga # Date 1227562982 0 # Node ID cc15254e44b6e9053a3f3040ee377ce99fbc77ac # Parent 4436464c4f515e2f45eeb12f4f072c82062b8e8e Disable spurious warning diff -r 4436464c4f51 -r cc15254e44b6 src/video/SDL_blit_copy.c --- a/src/video/SDL_blit_copy.c Mon Nov 24 00:18:42 2008 +0000 +++ b/src/video/SDL_blit_copy.c Mon Nov 24 21:43:02 2008 +0000 @@ -54,6 +54,9 @@ #endif /* __SSE__ */ #ifdef __MMX__ +#ifdef _MSC_VER +#pragma warning(disable:4799) +#endif /* This assumes 8-byte aligned src and dst */ static __inline__ void SDL_memcpyMMX(Uint8 * dst, const Uint8 * src, int len)