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

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

View File

@@ -180,9 +180,9 @@ static void DrawTile_Unmovable(TileInfo *ti)
}
}
static uint GetSlopeZ_Unmovable(TileInfo *ti)
static uint GetSlopeZ_Unmovable(const TileInfo* ti)
{
return GetPartialZ(ti->x&0xF, ti->y&0xF, ti->tileh) + ti->z;
return GetPartialZ(ti->x & 0xF, ti->y & 0xF, ti->tileh) + ti->z;
}
static uint GetSlopeTileh_Unmovable(const TileInfo *ti)