diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tilearea_type.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tilearea_type.h b/src/tilearea_type.h index 62d3d75df..7fabc50c4 100644 --- a/src/tilearea_type.h +++ b/src/tilearea_type.h @@ -20,16 +20,13 @@ struct TileArea { uint16 w; ///< The width of the area uint16 h; ///< The height of the area - /** Just construct this tile area */ - TileArea() {} - /** * Construct this tile area with some set values * @param tile the base tile * @param w the width * @param h the height */ - TileArea(TileIndex tile, uint8 w, uint8 h) : tile(tile), w(w), h(h) {} + TileArea(TileIndex tile = INVALID_TILE, uint8 w = 0, uint8 h = 0) : tile(tile), w(w), h(h) {} TileArea(TileIndex start, TileIndex end); |