(svn r19817) -Fix: MSVC compile warnings

This commit is contained in:
rubidium
2010-05-13 12:42:56 +00:00
parent f2d86acbd9
commit ec3c6484a9
4 changed files with 15 additions and 15 deletions

View File

@@ -1533,7 +1533,7 @@ void DrawDirtyBlocks()
}
} while (b++, (x += DIRTY_BLOCK_WIDTH) != w);
} while (b += -(w / DIRTY_BLOCK_WIDTH) + _dirty_bytes_per_line, (y += DIRTY_BLOCK_HEIGHT) != h);
} while (b += -(int)(w / DIRTY_BLOCK_WIDTH) + _dirty_bytes_per_line, (y += DIRTY_BLOCK_HEIGHT) != h);
_invalid_rect.left = w;
_invalid_rect.top = h;