Commit de5363f3 authored by Sam Lantinga's avatar Sam Lantinga

Disable spurious warning

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403241
parent ad347d4a
...@@ -54,6 +54,9 @@ SDL_memcpySSE(Uint8 * dst, const Uint8 * src, int len) ...@@ -54,6 +54,9 @@ SDL_memcpySSE(Uint8 * dst, const Uint8 * src, int len)
#endif /* __SSE__ */ #endif /* __SSE__ */
#ifdef __MMX__ #ifdef __MMX__
#ifdef _MSC_VER
#pragma warning(disable:4799)
#endif
/* This assumes 8-byte aligned src and dst */ /* This assumes 8-byte aligned src and dst */
static __inline__ void static __inline__ void
SDL_memcpyMMX(Uint8 * dst, const Uint8 * src, int len) SDL_memcpyMMX(Uint8 * dst, const Uint8 * src, int len)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment