summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-04-21 22:56:35 +0100
committerPeterN <peter@fuzzle.org>2019-04-29 17:40:22 +0100
commitf20b75d712c377c1ec639080e38fddb93b83883c (patch)
treea7399a85cefb739863d47861b5e84bee3c1f64b1 /src/town.h
parent0e439aeab7a564c0673464f6a701463a60d46ed5 (diff)
downloadopenttd-f20b75d712c377c1ec639080e38fddb93b83883c.tar.xz
Codechange: Remove TownLayoutByte type
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/town.h b/src/town.h
index 3d7d00b75..310b4c439 100644
--- a/src/town.h
+++ b/src/town.h
@@ -90,16 +90,16 @@ struct Town : TownPool::PoolItem<&_town_pool> {
CargoTypes cargo_accepted_total; ///< NOSAVE: Bitmap of all cargoes accepted by houses in this town.
StationList stations_near; ///< NOSAVE: List of nearby stations.
- uint16 time_until_rebuild; ///< time until we rebuild a house
+ uint16 time_until_rebuild; ///< time until we rebuild a house
- uint16 grow_counter; ///< counter to count when to grow, value is smaller than or equal to growth_rate
- uint16 growth_rate; ///< town growth rate
+ uint16 grow_counter; ///< counter to count when to grow, value is smaller than or equal to growth_rate
+ uint16 growth_rate; ///< town growth rate
- byte fund_buildings_months; ///< fund buildings program in action?
- byte road_build_months; ///< fund road reconstruction in action?
+ byte fund_buildings_months; ///< fund buildings program in action?
+ byte road_build_months; ///< fund road reconstruction in action?
- bool larger_town; ///< if this is a larger town and should grow more quickly
- TownLayoutByte layout; ///< town specific road layout
+ bool larger_town; ///< if this is a larger town and should grow more quickly
+ TownLayout layout; ///< town specific road layout
std::list<PersistentStorage *> psa_list;