diff options
author | rubidium <rubidium@openttd.org> | 2008-08-29 21:07:26 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-08-29 21:07:26 +0000 |
commit | ead8de78ea25a96ebfb8f7e5cad8c49c29d96b18 (patch) | |
tree | a2cfb1ef559cb3007724f9333089761308a1b2ad /src | |
parent | 7c002c14cc947b2e4623de1f0bfde7af1bb05aea (diff) | |
download | openttd-ead8de78ea25a96ebfb8f7e5cad8c49c29d96b18.tar.xz |
(svn r14186) -Fix [FS#2255]: small typo (Jafinto)
Diffstat (limited to 'src')
-rw-r--r-- | src/pbs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) {} |