diff options
author | yexo <yexo@openttd.org> | 2012-03-15 22:42:28 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2012-03-15 22:42:28 +0000 |
commit | 620a96f77f44b32f3215d1ab3b33367b56ac4e88 (patch) | |
tree | c759efe9cdbf6822af84d07b50c87fddea5b25f8 | |
parent | 4725f8c0a2f6913cee644e4a68d782ccbad4aaf1 (diff) | |
download | openttd-620a96f77f44b32f3215d1ab3b33367b56ac4e88.tar.xz |
(svn r24031) -Feature: increase the station class limit from 32 to 256
-rw-r--r-- | src/newgrf_station.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.h b/src/newgrf_station.h index b05706c53..9f31431d2 100644 --- 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<StationClassID, byte> StationClassIDByte; template <> struct EnumPropsT<StationClassID> : MakeEnumPropsT<StationClassID, byte, STAT_CLASS_BEGIN, STAT_CLASS_MAX, STAT_CLASS_MAX, 8> {}; |