Mercurial > sdl-ios-xcode
diff src/video/SDL_blit.h @ 2251:292bee385630
SSE and MMX intrinsics work with Visual Studio now...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 16 Aug 2007 06:37:22 +0000 |
parents | e1d228456537 |
children | 340942cfda48 |
line wrap: on
line diff
--- a/src/video/SDL_blit.h Thu Aug 16 06:20:51 2007 +0000 +++ b/src/video/SDL_blit.h Thu Aug 16 06:37:22 2007 +0000 @@ -103,7 +103,7 @@ #if defined(__GNUC__) #define DECLARE_ALIGNED(t,v,a) t __attribute__((aligned(a))) v #elif defined(_MSC_VER) -#define DECLARE_ALIGNED(t,v,a) t __declspec(align(a)) v +#define DECLARE_ALIGNED(t,v,a) __declspec(align(a)) t v #else #define DECLARE_ALIGNED(t,v,a) t v #endif