# HG changeset patch # User yexo # Date 2012-03-15 22:42:28 # Node ID 2452dc1ae812f9c028cb3679776e36d4ff0919d1 # Parent c671195238ceab18396cdbafd3227abffe18f554 (svn r24031) -Feature: increase the station class limit from 32 to 256 diff --git a/src/newgrf_station.h b/src/newgrf_station.h --- a/src/newgrf_station.h +++ b/src/newgrf_station.h @@ -24,7 +24,7 @@ enum StationClassID { STAT_CLASS_BEGIN = 0, ///< the lowest valid value STAT_CLASS_DFLT = 0, ///< Default station class. STAT_CLASS_WAYP, ///< Waypoint class. - STAT_CLASS_MAX = 32, ///< Maximum number of classes. + STAT_CLASS_MAX = 256, ///< Maximum number of classes. }; typedef SimpleTinyEnumT StationClassIDByte; template <> struct EnumPropsT : MakeEnumPropsT {};