From b1075ca7a43ea39cddf4ec4406f99bb5aa37a113 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Fri, 11 Nov 2005 20:34:16 +0000 Subject: (svn r3166) Constify read-only accesses of custom stations --- newgrf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newgrf.c') diff --git a/newgrf.c b/newgrf.c index 11c0b0748..f66cec1f5 100644 --- a/newgrf.c +++ b/newgrf.c @@ -869,13 +869,13 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int FOR_EACH_OBJECT { StationSpec *stat = &_cur_grffile->stations[stid + i]; byte srcid = grf_load_byte(&buf); - StationSpec *srcstat = &_cur_grffile->stations[srcid]; + const StationSpec *srcstat = &_cur_grffile->stations[srcid]; int t; stat->tiles = srcstat->tiles; for (t = 0; t < stat->tiles; t++) { DrawTileSprites *dts = &stat->renderdata[t]; - DrawTileSprites *sdts = &srcstat->renderdata[t]; + const DrawTileSprites *sdts = &srcstat->renderdata[t]; DrawTileSeqStruct const *sdtss = sdts->seq; int seq_count = 0; -- cgit v1.2.3-70-g09d2