From fd08ff915164cba0d95915c311272550e54dc2ea Mon Sep 17 00:00:00 2001 From: Koen Bussemaker Date: Mon, 22 Jan 2024 22:18:25 +0100 Subject: [PATCH] Fix: use correct size parameter type in TileArea constructors --- src/tilearea_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tilearea_type.h b/src/tilearea_type.h index 04c1e1a1d6..1cd29ec1bb 100644 --- a/src/tilearea_type.h +++ b/src/tilearea_type.h @@ -26,7 +26,7 @@ struct OrthogonalTileArea { * @param w the width * @param h the height */ - OrthogonalTileArea(TileIndex tile = INVALID_TILE, uint8_t w = 0, uint8_t h = 0) : tile(tile), w(w), h(h) + OrthogonalTileArea(TileIndex tile = INVALID_TILE, uint16_t w = 0, uint16_t h = 0) : tile(tile), w(w), h(h) { } @@ -79,7 +79,7 @@ struct DiagonalTileArea { * @param a The "x" extent. * @param b The "y" estent. */ - DiagonalTileArea(TileIndex tile = INVALID_TILE, int8_t a = 0, int8_t b = 0) : tile(tile), a(a), b(b) + DiagonalTileArea(TileIndex tile = INVALID_TILE, int16_t a = 0, int16_t b = 0) : tile(tile), a(a), b(b) { }