From 39f8b82640675d4810b9e4817ad09c7cb7bd4022 Mon Sep 17 00:00:00 2001 From: darkvater Date: Mon, 3 Jan 2005 14:07:49 +0000 Subject: (svn r1338) -Fix: fix signed/unsigned warnings introduced when ditching the macros for map querying. --- industry_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index 707f7c66b..aae700653 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1212,8 +1212,8 @@ static CheckNewIndustryProc * const _check_new_industry_procs[] = { static bool CheckSuitableIndustryPos(uint tile) { - int x = GET_TILE_X(tile); - int y = GET_TILE_Y(tile); + uint x = GET_TILE_X(tile); + uint y = GET_TILE_Y(tile); if ( x < 2 || y < 2 || x > MapMaxX() - 3 || y > MapMaxY() - 3) { _error_message = STR_0239_SITE_UNSUITABLE; -- cgit v1.2.3-54-g00ecf