BurningVideo: remove align 16 byte on win32
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6191 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
@@ -308,7 +308,12 @@ namespace irr {
|
||||
|
||||
//! Compiler Align
|
||||
#if defined(_MSC_VER)
|
||||
#if defined(ENV64BIT)
|
||||
#define ALIGN(x) __declspec(align(x))
|
||||
#else
|
||||
// ALIGN(16) not working
|
||||
#define ALIGN(x) __declspec(align(8))
|
||||
#endif
|
||||
#elif defined(__GNUC__)
|
||||
#define ALIGN(x) __attribute__ ((aligned(x)))
|
||||
#else
|
||||
|
Reference in New Issue
Block a user