From 2c17c649afd9f199f571c83407820e53b5f52c7c Mon Sep 17 00:00:00 2001 From: peter1138 Date: Wed, 8 Nov 2006 12:28:57 +0000 Subject: [PATCH] (svn r7114) -Codechange: [NewStations] Free up custom station layouts --- newgrf.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/newgrf.c b/newgrf.c index 7a50859f0c..3277d9a950 100644 --- a/newgrf.c +++ b/newgrf.c @@ -3165,7 +3165,18 @@ static void ResetCustomStations(void) free(statspec->renderdata); } - // TODO: Release platforms and layouts + /* Release platforms and layouts */ + if (!statspec->copied_layouts) { + uint l, p; + for (l = 0; l < statspec->lengths; l++) { + for (p = 0; p < statspec->platforms[l]; p++) { + free(statspec->layouts[l][p]); + } + free(statspec->layouts[l]); + } + free(statspec->layouts); + free(statspec->platforms); + } /* Release this station */ free(statspec);