(svn r15697) -Fix (r15695): warning about comparing signed vs unsigned.

This commit is contained in:
rubidium
2009-03-13 00:48:03 +00:00
parent f1605cf475
commit 3a3607862d
3 changed files with 4 additions and 4 deletions

View File

@@ -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)