1
0

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:
engineer_apple
2021-02-13 21:49:03 +00:00
parent 748510300d
commit 12a94ed5b7
4 changed files with 23 additions and 24 deletions

View File

@@ -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