Skip to content
Snippets Groups Projects
Commit 5874981d authored by Steve Lhomme's avatar Steve Lhomme Committed by Hugo Beauzée-Luyssen
Browse files

deinterlace: fix MSVC compilation


Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
parent e7ef356d
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,8 @@
# else
# define DECLARE_ASM_CONST(n,t,v) static const t __attribute__ ((aligned (n))) v
# endif
#elif defined(_MSC_VER)
# define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
#endif
typedef intptr_t x86_reg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment