diff options
Diffstat (limited to 'src/gfx.cpp')
-rw-r--r-- | src/gfx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp index 8f8bb3137..c8152e677 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -1015,8 +1015,8 @@ void RedrawScreenRect(int left, int top, int right, int bottom) void DrawDirtyBlocks() { byte *b = _dirty_blocks; - const int w = ALIGN(_screen.width, 64); - const int h = ALIGN(_screen.height, 8); + const int w = Align(_screen.width, 64); + const int h = Align(_screen.height, 8); int x; int y; |