Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Disable spurious warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 24, 2008
1 parent 3772374 commit 0179351
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/video/SDL_blit_copy.c
Expand Up @@ -54,6 +54,9 @@ SDL_memcpySSE(Uint8 * dst, const Uint8 * src, int len)
#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)
Expand Down

0 comments on commit 0179351

Please sign in to comment.