diff options
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/cocoa_v.mm | 2 | ||||
-rw-r--r-- | src/video/win32_v.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/video/cocoa_v.mm b/src/video/cocoa_v.mm index fd8a7cb90..cf76ccd94 100644 --- a/src/video/cocoa_v.mm +++ b/src/video/cocoa_v.mm @@ -52,8 +52,6 @@ extern "C" void HideMenuBar(); #endif -/* Defined in ppc/param.h or i386/param.h included from sys/param.h */ -#undef ALIGN /* Defined in stdbool.h */ #ifndef __cplusplus # ifndef __BEOS__ diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index 03728090c..16677fb87 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -686,7 +686,7 @@ static bool AllocateDibSection(int w, int h) return false; _screen.width = w; - _screen.pitch = (bpp == 8) ? ALIGN(w, 4) : w; + _screen.pitch = (bpp == 8) ? Align(w, 4) : w; _screen.height = h; bi = (BITMAPINFO*)alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256); memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256); |