summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/newgrf.c b/newgrf.c
index 0d0ed95cd..4d44dd6b3 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -2392,13 +2392,12 @@ static void ReleaseSpriteGroups(GRFFile *file)
static void ResetCustomStations(void)
{
GRFFile *file;
- int i;
+ uint i;
CargoID c;
for (file = _first_grffile; file != NULL; file = file->next) {
- for (i = 0; i < 256; i++) {
- if (file->stations[i].grfid != file->grfid)
- continue;
+ for (i = 0; i < lengthof(file->stations); i++) {
+ if (file->stations[i].grfid != file->grfid) continue;
// TODO: Release renderdata, platforms and layouts