From 2adbf67968ad958c555f6bd475507e9bee4bb450 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 13 Mar 2009 00:48:03 +0000 Subject: (svn r15697) -Fix (r15695): warning about comparing signed vs unsigned. --- src/town.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/town.h') diff --git a/src/town.h b/src/town.h index 004234cd8..9f7b3e710 100644 --- a/src/town.h +++ b/src/town.h @@ -95,8 +95,8 @@ struct BuildingCounts { uint8 class_count[HOUSE_CLASS_MAX]; }; -static const int CUSTOM_TOWN_NUMBER_DIFFICULTY = 4; ///< value for custom town number in difficulty settings -static const int CUSTOM_TOWN_MAX_NUMBER = 5000; ///< this is the maximum number of towns a user can specify in customisation +static const uint CUSTOM_TOWN_NUMBER_DIFFICULTY = 4; ///< value for custom town number in difficulty settings +static const uint CUSTOM_TOWN_MAX_NUMBER = 5000; ///< this is the maximum number of towns a user can specify in customisation DECLARE_OLD_POOL(Town, Town, 3, 8000) -- cgit v1.2.3-54-g00ecf