(svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style
This fixes also FS#1450
This commit is contained in:
@@ -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__
|
||||
|
@@ -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);
|
||||
|
Reference in New Issue
Block a user