diff --git a/stepmania/src/global.h b/stepmania/src/global.h index bcdca40859..97877bab6e 100644 --- a/stepmania/src/global.h +++ b/stepmania/src/global.h @@ -127,12 +127,10 @@ void ShowWarning( const char *file, int line, const char *message ); // don't pu #define CONST_FUNCTION #endif -#if !defined(ALIGN) #if defined(__GNUC__) -#define ALIGN(n) __attribute__((aligned(n))) +#define SM_ALIGN(n) __attribute__((aligned(n))) #else -#define ALIGN(n) -#endif +#define SM_ALIGN(n) #endif