mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-09-03 22:59:30 +00:00
(svn r10687) -Fix (r10686): subversion does not like it when you change code when you are typing the commit message.
This commit is contained in:
@@ -55,7 +55,7 @@ uint GetTileZ(TileIndex tile)
|
||||
|
||||
uint GetTileMaxZ(TileIndex t)
|
||||
{
|
||||
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY()) return 0;
|
||||
if (TileX(t) == MapMaxX() || TileY(t) == MapMaxY()) return 0;
|
||||
|
||||
uint h = TileHeight(t);
|
||||
h = max(h, TileHeight(t + TileDiffXY(1, 0)));
|
||||
|
Reference in New Issue
Block a user