summaryrefslogtreecommitdiff
path: root/src/pbs.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-08-29 21:07:26 +0000
committerrubidium <rubidium@openttd.org>2008-08-29 21:07:26 +0000
commit7accf0ac970f30541da6fc21b37f44c95629edb1 (patch)
treea2cfb1ef559cb3007724f9333089761308a1b2ad /src/pbs.h
parent509b77371f6e2f091d020936d02c0fb747457f5e (diff)
downloadopenttd-7accf0ac970f30541da6fc21b37f44c95629edb1.tar.xz
(svn r14186) -Fix [FS#2255]: small typo (Jafinto)
Diffstat (limited to 'src/pbs.h')
-rw-r--r--src/pbs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pbs.h b/src/pbs.h
index d01123ed1..c0ee485d1 100644
--- a/src/pbs.h
+++ b/src/pbs.h
@@ -21,7 +21,7 @@ void UnreserveRailTrack(TileIndex tile, Track t);
struct PBSTileInfo {
TileIndex tile; ///< Tile the path ends, INVALID_TILE if no valid path was found.
Trackdir trackdir; ///< The reserved trackdir on the tile.
- bool okay; ///< True if tile is a safe wairing position, false otherwise.
+ bool okay; ///< True if tile is a safe waiting position, false otherwise.
PBSTileInfo() : tile(INVALID_TILE), trackdir(INVALID_TRACKDIR), okay(false) {}
PBSTileInfo(TileIndex _t, Trackdir _td, bool _okay) : tile(_t), trackdir(_td), okay(_okay) {}