summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-03 20:42:45 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-03 20:42:45 +0000
commit2ad6bfefdaeaa06561b1c9196e5bd65d3dd306c3 (patch)
treef7dab51d927e64cf1c169d7c48832136b22e6851 /newgrf.c
parent62e6493dd0016ecbc638fd9f2fa4bfef7ac1870d (diff)
downloadopenttd-2ad6bfefdaeaa06561b1c9196e5bd65d3dd306c3.tar.xz
(svn r4720) - Newstations: instead of literally copying sprite layout data, just copy the pointer to the existing data.
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c24
1 files changed, 1 insertions, 23 deletions
diff --git a/newgrf.c b/newgrf.c
index 62b0e6464..b617597f2 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -847,31 +847,9 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int
StationSpec *statspec = &_cur_grffile->stations[stid + i];
byte srcid = grf_load_byte(&buf);
const StationSpec *srcstatspec = &_cur_grffile->stations[srcid];
- uint t;
statspec->tiles = srcstatspec->tiles;
- statspec->renderdata = calloc(statspec->tiles, sizeof(*statspec->renderdata));
- for (t = 0; t < statspec->tiles; t++) {
- DrawTileSprites *dts = &statspec->renderdata[t];
- const DrawTileSprites *sdts = &srcstatspec->renderdata[t];
- DrawTileSeqStruct const *sdtss = sdts->seq;
- int seq_count = 0;
-
- dts->seq = NULL;
- dts->ground_sprite = sdts->ground_sprite;
- if (dts->ground_sprite == 0) continue;
-
- while (true) {
- DrawTileSeqStruct *dtss;
-
- // no relative bounding box support
- dts->seq = realloc((void*)dts->seq, ++seq_count * sizeof(DrawTileSeqStruct));
- dtss = (DrawTileSeqStruct*) &dts->seq[seq_count - 1];
- *dtss = *sdtss;
- if ((byte) dtss->delta_x == 0x80) break;
- sdtss++;
- }
- }
+ statspec->renderdata = srcstatspec->renderdata;
}
break;