diff --git a/raylib/external/jar_xm.h b/raylib/external/jar_xm.h index 82170f5..d7bc9f1 100644 --- a/raylib/external/jar_xm.h +++ b/raylib/external/jar_xm.h @@ -518,6 +518,10 @@ int jar_xm_create_context(jar_xm_context_t** ctxp, const char* moddata, uint32_t return jar_xm_create_context_safe(ctxp, moddata, SIZE_MAX, rate); } +#ifdef ALIGN +#undef ALIGN +#endif + #define ALIGN(x, b) (((x) + ((b) - 1)) & ~((b) - 1)) #define ALIGN_PTR(x, b) (void*)(((uintptr_t)(x) + ((b) - 1)) & ~((b) - 1)) int jar_xm_create_context_safe(jar_xm_context_t** ctxp, const char* moddata, size_t moddata_length, uint32_t rate) {