From 7c694f25537097f380d7215082b42eea51e86815 Mon Sep 17 00:00:00 2001 From: tron Date: Tue, 19 Jul 2005 21:49:35 +0000 Subject: (svn r2643) Get rid of some unnecessary casts --- tunnelbridge_cmd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tunnelbridge_cmd.c') diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c index d2d4a67e0..8da2c779c 100644 --- a/tunnelbridge_cmd.c +++ b/tunnelbridge_cmd.c @@ -845,7 +845,7 @@ int32 DoConvertTunnelBridgeRail(TileIndex tile, uint totype, bool exec) // railway tunnel if (!CheckTileOwnership(tile)) return CMD_ERROR; - if ( (uint)(_m[tile].m3 & 0xF) == totype) return CMD_ERROR; + if ((_m[tile].m3 & 0xFU) == totype) return CMD_ERROR; endtile = CheckTunnelBusy(tile, &length); if (endtile == INVALID_TILE) return CMD_ERROR; @@ -864,7 +864,7 @@ int32 DoConvertTunnelBridgeRail(TileIndex tile, uint totype, bool exec) return CMD_ERROR; // tile is already of requested type? - if ( (uint)(_m[tile].m3 & 0xF) == totype) return CMD_ERROR; + if ((_m[tile].m3 & 0xFU) == totype) return CMD_ERROR; // change type. if (exec) { _m[tile].m3 = (_m[tile].m3 & 0xF0) + totype; @@ -893,7 +893,7 @@ int32 DoConvertTunnelBridgeRail(TileIndex tile, uint totype, bool exec) return CMD_ERROR; } - if ( (uint)(_m[tile].m3 & 0xF) == totype) return CMD_ERROR; + if ((_m[tile].m3 & 0xFU) == totype) return CMD_ERROR; cost = 0; do { if (exec) { -- cgit v1.2.3-54-g00ecf