(svn r13638) -Fix: signed/unsigned warning for MSVC9 and gcc2

This commit is contained in:
smatz 2008-06-26 00:40:42 +00:00
parent 35c8cdb5fa
commit 0b75129c24
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ static CommandCost CheckBridgeSlopeSouth(Axis axis, Slope *tileh, uint *z)
bool CheckBridge_Stuff(BridgeType bridge_type, uint bridge_len, uint32 flags)
{
if (flags & DC_QUERY_COST) {
return bridge_len <= (_settings_game.construction.longbridges ? 100 : 16);
return bridge_len <= (_settings_game.construction.longbridges ? 100U : 16U);
}
if (bridge_type >= MAX_BRIDGES) return false;