summaryrefslogtreecommitdiff
path: root/ai
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2006-06-11 21:19:51 +0000
committerKUDr <kudr@openttd.org>2006-06-11 21:19:51 +0000
commit8316020ff3016b002a8852b34ac8e94582602d18 (patch)
tree4e635675bd4545c2485887d3b6c41a6a6d8ab307 /ai
parent3b192c031560f34c33d9dd061519da1fa589653d (diff)
downloadopenttd-8316020ff3016b002a8852b34ac8e94582602d18.tar.xz
(svn r5228) Suppress MSVC warnings about signed/unsigned comparison
Diffstat (limited to 'ai')
-rw-r--r--ai/default/default.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ai/default/default.c b/ai/default/default.c
index 1b814231f..7d2fe5cab 100644
--- a/ai/default/default.c
+++ b/ai/default/default.c
@@ -484,7 +484,7 @@ static void AiFindSubsidyIndustryRoute(FoundRoute *fr)
if (cargo == CT_GOODS || cargo == CT_FOOD) {
Town* to_tow = GetTown(s->to);
- if (to_tow->population < (cargo == CT_FOOD ? 200 : 900)) return; // error
+ if (to_tow->population < (cargo == CT_FOOD ? 200U : 900U)) return; // error
fr->to = to_tow;
to_xy = to_tow->xy;
} else {
@@ -567,7 +567,7 @@ static void AiFindRandomIndustryRoute(FoundRoute *fr)
// pick a dest town, and see if it's big enough
Town* t = AiFindRandomTown();
- if (t == NULL || t->population < (cargo == CT_FOOD ? 200 : 900)) return;
+ if (t == NULL || t->population < (cargo == CT_FOOD ? 200U : 900U)) return;
fr->to = t;
fr->distance = DistanceManhattan(i->xy, t->xy);