(svn r3166) Constify read-only accesses of custom stations

This commit is contained in:
2005-11-11 20:34:16 +00:00
parent 1c867927a3
commit b1075ca7a4
4 changed files with 10 additions and 10 deletions

View File

@@ -375,9 +375,9 @@ extern uint16 _custom_sprites_base;
/* Draw a waypoint */
void DrawWaypointSprite(int x, int y, int stat_id, RailType railtype)
{
StationSpec *stat;
const StationSpec *stat;
uint32 relocation;
DrawTileSprites *cust;
const DrawTileSprites *cust;
DrawTileSeqStruct const *seq;
const RailtypeInfo *rti = GetRailTypeInfo(railtype);
uint32 ormod, img;