diff options
author | glx <glx@openttd.org> | 2008-02-16 00:10:03 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-16 00:10:03 +0000 |
commit | 044ca2bbf63f7162cdceaf535957fd1443f80ea4 (patch) | |
tree | f83c2c28c5c30ee5dbd7546cd241363a454ad7bf /src/ai | |
parent | 3e70ee6ed7ea7bfb7b08ee70206a30651aec956b (diff) | |
download | openttd-044ca2bbf63f7162cdceaf535957fd1443f80ea4.tar.xz |
(svn r12155) -Fix (r12154): some warnings (always compile before commit)
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/default/default.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp index 949f29702..0c81cee23 100644 --- a/src/ai/default/default.cpp +++ b/src/ai/default/default.cpp @@ -3409,7 +3409,7 @@ static bool AiCheckAirportResources(TileIndex tile, const AiDefaultBlockData *p, const AirportFTAClass* airport = GetAirport(p->attr); uint w = airport->size_x; uint h = airport->size_y; - uint rad = _patches.modified_catchment ? airport->catchment : CA_UNMODIFIED; + uint rad = _patches.modified_catchment ? airport->catchment : (uint)CA_UNMODIFIED; if (cargo & 0x80) { GetProductionAroundTiles(values, tile2, w, h, rad); |