(svn r9945) -Fix: bridges were not properly marked dirty when adding/removing roadtypes.

This commit is contained in:
rubidium
2007-05-26 21:45:16 +00:00
parent fba2106536
commit 567035ebb5

View File

@@ -171,7 +171,7 @@ int32 CmdRemoveRoad(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
if (IsBridge(tile)) {
TileIndexDiff delta = TileOffsByDiagDir(GetBridgeRampDirection(tile));
for (TileIndex t = tile; tile != other_end; tile += delta) MarkTileDirtyByTile(t);
for (TileIndex t = tile + delta; t != other_end; t += delta) MarkTileDirtyByTile(t);
}
}
} else {
@@ -475,7 +475,7 @@ do_clear:;
if (IsBridge(tile)) {
TileIndexDiff delta = TileOffsByDiagDir(GetBridgeRampDirection(tile));
for (TileIndex t = tile + delta; tile != other_end; tile += delta) MarkTileDirtyByTile(t);
for (TileIndex t = tile + delta; t != other_end; t += delta) MarkTileDirtyByTile(t);
}
} break;