(svn r1898) Remove some unused macros from macros.h and move some others to more appropriate headers

This commit is contained in:
tron
2005-02-22 12:48:03 +00:00
parent f22eab5544
commit 51eef8c5b7
6 changed files with 13 additions and 25 deletions

View File

@@ -2189,7 +2189,7 @@ static bool CheckCompatibleRail(const Vehicle *v, TileIndex tile)
uint tileh = GetTileSlope(tile, &height);
// correct Z position of a train going under a bridge on slopes
if (CORRECT_Z(tileh)) height += 8;
if (CorrectZ(tileh)) height += 8;
if (v->z_pos != height) return true; // train is going over bridge
}