mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-20 02:45:37 +01:00
(svn r14186) -Fix [FS#2255]: small typo (Jafinto)
This commit is contained in:
parent
7c002c14cc
commit
ead8de78ea
@ -21,7 +21,7 @@ void UnreserveRailTrack(TileIndex tile, Track t);
|
|||||||
struct PBSTileInfo {
|
struct PBSTileInfo {
|
||||||
TileIndex tile; ///< Tile the path ends, INVALID_TILE if no valid path was found.
|
TileIndex tile; ///< Tile the path ends, INVALID_TILE if no valid path was found.
|
||||||
Trackdir trackdir; ///< The reserved trackdir on the tile.
|
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() : tile(INVALID_TILE), trackdir(INVALID_TRACKDIR), okay(false) {}
|
||||||
PBSTileInfo(TileIndex _t, Trackdir _td, bool _okay) : tile(_t), trackdir(_td), okay(_okay) {}
|
PBSTileInfo(TileIndex _t, Trackdir _td, bool _okay) : tile(_t), trackdir(_td), okay(_okay) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user