summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-03-13 00:48:03 +0000
committerrubidium <rubidium@openttd.org>2009-03-13 00:48:03 +0000
commit2adbf67968ad958c555f6bd475507e9bee4bb450 (patch)
tree2aa0dcb28c86b94945838a6d676a3dbc5406247d /src/town.h
parenteb0d43aadd6f423fa961dd81e4fdfb49ce9e92a2 (diff)
downloadopenttd-2adbf67968ad958c555f6bd475507e9bee4bb450.tar.xz
(svn r15697) -Fix (r15695): warning about comparing signed vs unsigned.
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h4
1 files changed, 2 insertions, 2 deletions
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)