From 6d9a0ff72396fc99151878e551fd0756ef71ce64 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 22 Apr 2012 16:28:23 +0000 Subject: [PATCH] (svn r24168) -Codechange: Simplify default station class instantiation. --- src/newgrf_station.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp index e48ad935d5..38e2507ee9 100644 --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -33,15 +33,11 @@ template /* Set up initial data */ classes[0].global_id = 'DFLT'; classes[0].name = STR_STATION_CLASS_DFLT; - classes[0].count = 1; - classes[0].spec = MallocT(1); - classes[0].spec[0] = NULL; + classes[0].Insert(NULL); classes[1].global_id = 'WAYP'; classes[1].name = STR_STATION_CLASS_WAYP; - classes[1].count = 1; - classes[1].spec = MallocT(1); - classes[1].spec[0] = NULL; + classes[1].Insert(NULL); } INSTANTIATE_NEWGRF_CLASS_METHODS(StationClass, StationSpec, StationClassID, STAT_CLASS_MAX)