summaryrefslogtreecommitdiff
path: root/src/depot_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-09-16 16:31:57 +0000
committerrubidium <rubidium@openttd.org>2010-09-16 16:31:57 +0000
commitaf18c30f30d550b98f7fe3dc89c8977a2aeb7f51 (patch)
tree9c154aa95356c740d333b8f92ee34259272cc914 /src/depot_base.h
parentb01c63cd23b3c60de3b48478b5287cdaeffed974 (diff)
downloadopenttd-af18c30f30d550b98f7fe3dc89c8977a2aeb7f51.tar.xz
(svn r20816) -Codechange [FS#3835]: make waypoint default names work like depots, stations and vehicles (Krille)
Diffstat (limited to 'src/depot_base.h')
-rw-r--r--src/depot_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/depot_base.h b/src/depot_base.h
index 4bc4af67c..04957c8cb 100644
--- a/src/depot_base.h
+++ b/src/depot_base.h
@@ -23,7 +23,7 @@ struct Depot : DepotPool::PoolItem<&_depot_pool> {
char *name;
TileIndex xy;
- uint16 town_cn; ///< The Nth depot for this town (consecutive number)
+ uint16 town_cn; ///< The N-1th depot for this town (consecutive number)
Date build_date; ///< Date of construction
Depot(TileIndex xy = INVALID_TILE) : xy(xy) {}