summaryrefslogtreecommitdiff
path: root/src/waypoint_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/waypoint_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/waypoint_base.h')
-rw-r--r--src/waypoint_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint_base.h b/src/waypoint_base.h
index 7dc7a5753..6b8d59579 100644
--- a/src/waypoint_base.h
+++ b/src/waypoint_base.h
@@ -15,7 +15,7 @@
#include "base_station_base.h"
struct Waypoint : SpecializedStation<Waypoint, true> {
- uint16 town_cn; ///< The Nth waypoint for this town (consecutive number)
+ uint16 town_cn; ///< The N-1th waypoint for this town (consecutive number)
Waypoint(TileIndex tile = INVALID_TILE) : SpecializedStation<Waypoint, true>(tile) { }
~Waypoint();