1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2025-12-10 06:52:05 +01:00

(svn r3962) -Fix: Mark the right tile as dirty. It's just a graphical glitch which happend in r1592. Backport of r3792 from trunk

This commit is contained in:
Darkvater
2006-03-18 15:47:16 +00:00
parent 923dee9bec
commit 37c1135d6b

View File

@@ -544,7 +544,7 @@ static void TileLoopWaterHelper(TileIndex tile, const TileIndexDiffC *offs)
// Middle part of bridge with clear land below?
if ((_m[target].m5 & 0xF8) == 0xC0) {
_m[target].m5 |= 0x08;
MarkTileDirtyByTile(tile);
MarkTileDirtyByTile(target);
}
break;