summaryrefslogtreecommitdiff
path: root/src/tile_cmd.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2014-01-26 13:50:10 +0000
committerfrosch <frosch@openttd.org>2014-01-26 13:50:10 +0000
commitf0e7f9982ae72b86f01465155122edddd6c2b463 (patch)
tree2c2a774b9c31a8408f616f32c46afb888a773bad /src/tile_cmd.h
parent95354136be5de6055302fa1b992b86ec40a010c6 (diff)
downloadopenttd-f0e7f9982ae72b86f01465155122edddd6c2b463.tar.xz
(svn r26277) -Add [FS#5849]: Display speed limit also for road bridges in the TileInfo window.
Diffstat (limited to 'src/tile_cmd.h')
-rw-r--r--src/tile_cmd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tile_cmd.h b/src/tile_cmd.h
index 7dae7a1ca..966694bfb 100644
--- a/src/tile_cmd.h
+++ b/src/tile_cmd.h
@@ -62,7 +62,8 @@ struct TileDesc {
StringID airport_tile_name; ///< Name of the airport tile
const char *grf; ///< newGRF used for the tile contents
uint64 dparam[2]; ///< Parameters of the \a str string
- uint16 rail_speed; ///< Speed limit of rail
+ uint16 rail_speed; ///< Speed limit of rail (bridges and track)
+ uint16 road_speed; ///< Speed limit of road (bridges)
};
/**