(svn r20404) -Codechange: remove the need for StationSpec::allocated

This commit is contained in:
rubidium
2010-08-07 21:39:30 +00:00
parent 5be1f3f06c
commit 2b645d1b0d
3 changed files with 7 additions and 9 deletions

View File

@@ -173,9 +173,6 @@ void SetCustomStationSpec(StationSpec *statspec)
StationClass *station_class;
int i;
/* If the station has already been allocated, don't reallocate it. */
if (statspec->allocated) return;
assert(statspec->cls_id < STAT_CLASS_MAX);
station_class = &_station_classes[statspec->cls_id];
@@ -183,7 +180,6 @@ void SetCustomStationSpec(StationSpec *statspec)
station_class->spec = ReallocT(station_class->spec, station_class->stations);
station_class->spec[i] = statspec;
statspec->allocated = true;
}
/**