summaryrefslogtreecommitdiff
path: root/src/tilearea_type.h
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-03-12 19:38:00 +0000
committerterkhen <terkhen@openttd.org>2010-03-12 19:38:00 +0000
commit4eb6e3f0603a2b13d5d3d8016b071a7419d81bb0 (patch)
treea048d0ec80ad9ef247bebdd46693469d16098bd1 /src/tilearea_type.h
parent0903463824538dcec8a19fb3f5c4a6f1bfa2860a (diff)
downloadopenttd-4eb6e3f0603a2b13d5d3d8016b071a7419d81bb0.tar.xz
(svn r19392) -Codechange: Increase the maximum size of a TileArea.
Diffstat (limited to 'src/tilearea_type.h')
-rw-r--r--src/tilearea_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tilearea_type.h b/src/tilearea_type.h
index 4eeaf1e48..711ac986d 100644
--- a/src/tilearea_type.h
+++ b/src/tilearea_type.h
@@ -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() {}