(svn r3066) Constify the parameter of GetSlopeZ_*()

This commit is contained in:
tron
2005-10-19 14:49:46 +00:00
parent ab049c7bca
commit 71d293f2a3
12 changed files with 31 additions and 26 deletions

View File

@@ -932,7 +932,7 @@ void DrawRoadDepotSprite(int x, int y, int image)
}
}
static uint GetSlopeZ_Road(TileInfo *ti)
static uint GetSlopeZ_Road(const TileInfo* ti)
{
uint z = ti->z;
int th = ti->tileh;