Commit 5874981d authored by Steve Lhomme's avatar Steve Lhomme Committed by Hugo Beauzée-Luyssen

deinterlace: fix MSVC compilation

Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
parent e7ef356d
......@@ -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;
......
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