(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

@@ -98,7 +98,7 @@ static inline uint Correct_Z(uint tileh)
{
// needs z correction for slope-type graphics that have the NORTHERN tile lowered
// 1, 2, 3, 4, 5, 6 and 7
return (CORRECT_Z(tileh)) ? 8 : 0;
return CorrectZ(tileh) ? 8 : 0;
}
uint GetCorrectTileHeight(TileIndex tile)