(svn r19392) -Codechange: Increase the maximum size of a TileArea.

This commit is contained in:
terkhen
2010-03-12 19:38:00 +00:00
parent 0903463824
commit 4eb6e3f060
4 changed files with 15 additions and 15 deletions

View File

@@ -17,8 +17,8 @@
/** Represents the covered area of e.g. a rail station */
struct TileArea {
TileIndex tile; ///< The base tile of the area
uint8 w; ///< The width of the area
uint8 h; ///< The height of the area
uint16 w; ///< The width of the area
uint16 h; ///< The height of the area
/** Just construct this tile area */
TileArea() {}