From 4eb6e3f0603a2b13d5d3d8016b071a7419d81bb0 Mon Sep 17 00:00:00 2001 From: terkhen Date: Fri, 12 Mar 2010 19:38:00 +0000 Subject: (svn r19392) -Codechange: Increase the maximum size of a TileArea. --- src/tilearea_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tilearea_type.h') 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() {} -- cgit v1.2.3-54-g00ecf