From eff775d2520e61b7b051c72cbda3f6de901a3611 Mon Sep 17 00:00:00 2001 From: belugas Date: Thu, 24 Apr 2008 18:30:41 +0000 Subject: [PATCH] (svn r12875) -Codechange: Use defined const instead of cast magic --- src/station_cmd.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 4261425ac1..32e2fa1dd3 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -982,7 +982,7 @@ CommandCost CmdBuildRailroadStation(TileIndex tile_org, uint32 flags, uint32 p1, if (flags & DC_EXEC) { st = new Station(); - st->town = ClosestTownFromTile(tile_org, (uint)-1); + st->town = ClosestTownFromTile(tile_org, UINT_MAX); GenerateStationName(st, tile_org, STATIONNAMING_RAIL); if (IsValidPlayer(_current_player)) { @@ -1406,7 +1406,7 @@ CommandCost CmdBuildRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (flags & DC_EXEC) { st = new Station(); - st->town = ClosestTownFromTile(tile, (uint)-1); + st->town = ClosestTownFromTile(tile, UINT_MAX); GenerateStationName(st, tile, STATIONNAMING_ROAD); if (IsValidPlayer(_current_player)) { @@ -1541,7 +1541,7 @@ CommandCost CmdRemoveRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2 /* Rebuild the drive throuhg road stop. As a road stop can only be * removed by the owner of the roadstop, _current_player is the * owner of the road stop. */ - MakeRoadNormal(tile, road_bits, rts, is_towns_road ? ClosestTownFromTile(tile, (uint)-1)->index : 0, + MakeRoadNormal(tile, road_bits, rts, is_towns_road ? ClosestTownFromTile(tile, UINT_MAX)->index : 0, is_towns_road ? OWNER_TOWN : _current_player, _current_player, _current_player); } @@ -1831,7 +1831,7 @@ CommandCost CmdBuildBuoy(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (flags & DC_EXEC) { Station *st = new Station(); - st->town = ClosestTownFromTile(tile, (uint)-1); + st->town = ClosestTownFromTile(tile, UINT_MAX); GenerateStationName(st, tile, STATIONNAMING_BUOY); if (IsValidPlayer(_current_player)) { @@ -1991,7 +1991,7 @@ CommandCost CmdBuildDock(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (flags & DC_EXEC) { st = new Station(); - st->town = ClosestTownFromTile(tile, (uint)-1); + st->town = ClosestTownFromTile(tile, UINT_MAX); GenerateStationName(st, tile, STATIONNAMING_DOCK); if (IsValidPlayer(_current_player)) { @@ -2830,7 +2830,7 @@ void BuildOilRig(TileIndex tile) return; } - st->town = ClosestTownFromTile(tile, (uint)-1); + st->town = ClosestTownFromTile(tile, UINT_MAX); st->sign.width_1 = 0; GenerateStationName(st, tile, STATIONNAMING_OILRIG);