(svn r2924) Introduce the ALIGN() macro which aligns values to multiples of a power of 2, for exact semantics see the commment in macros.h

This commit is contained in:
tron
2005-09-08 12:48:26 +00:00
parent d73d12ae8a
commit 45ca3b6336
5 changed files with 12 additions and 6 deletions

4
gfx.c
View File

@@ -1755,8 +1755,8 @@ void RedrawScreenRect(int left, int top, int right, int bottom)
void DrawDirtyBlocks(void)
{
byte *b = _dirty_blocks;
const int w = (_screen.width + 63) & ~63;
const int h = (_screen.height + 7) & ~7;
const int w = ALIGN(_screen.width, 64);
const int h = ALIGN(_screen.height, 8);
int x;
int y;