0x004610F2
| 138 | |
| 139 | // 0x004610F2 |
| 140 | void mapInvalidateSelectionRect() |
| 141 | { |
| 142 | if (World::hasMapSelectionFlag(World::MapSelectionFlags::enable)) |
| 143 | { |
| 144 | for (coord_t x = _mapSelectionAX; x <= _mapSelectionBX; x += 32) |
| 145 | { |
| 146 | for (coord_t y = _mapSelectionAY; y <= _mapSelectionBY; y += 32) |
| 147 | { |
| 148 | TileManager::mapInvalidateTileFull({ x, y }); |
| 149 | } |
| 150 | } |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void resetMapSelectionFreeFormTiles() |
| 155 | { |