(svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style

This fixes also FS#1450
This commit is contained in:
skidd13
2007-11-19 20:40:14 +00:00
parent d076ea8697
commit 58bb5c7525
10 changed files with 9 additions and 18 deletions

View File

@@ -84,7 +84,7 @@ static bool MakeBmpImage(const char *name, ScreenshotCallback *callb, void *user
if (f == NULL) return false;
/* each scanline must be aligned on a 32bit boundary */
padw = ALIGN(w, 4);
padw = Align(w, 4);
if (pixelformat == 8) pal_size = sizeof(RgbQuad) * 256;