1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Remove some redundant casts and fix rct_sprite::AsDuck()

This commit is contained in:
Michael Steenbeek
2018-02-15 13:04:25 +01:00
committed by GitHub
parent c8c9bf70a7
commit d481cca2ed
15 changed files with 33 additions and 35 deletions

View File

@@ -438,10 +438,10 @@ void X8DrawingEngine::DrawDirtyBlocks(uint32 x, uint32 y, uint32 columns, uint32
uint8 * screenDirtyBlocks = _dirtyGrid.Blocks;
// Unset dirty blocks
for (uint32 top = y; top < y + (uint32)rows; top++)
for (uint32 top = y; top < y + rows; top++)
{
uint32 topOffset = top * dirtyBlockColumns;
for (uint32 left = x; left < x + (uint32)columns; left++)
for (uint32 left = x; left < x + columns; left++)
{
screenDirtyBlocks[topOffset + left] = 0;
}