diff options
-rw-r--r-- | bridge_gui.c | 2 | ||||
-rw-r--r-- | tunnelbridge_cmd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bridge_gui.c b/bridge_gui.c index 6a1120c79..a417166bf 100644 --- a/bridge_gui.c +++ b/bridge_gui.c @@ -145,7 +145,7 @@ void ShowBuildBridgeWindow(uint start, uint end, byte bridge_type) if (CheckBridge_Stuff(bridge_type, bridge_len)) { // bridge is accepted, add to list // add to terraforming & bulldozing costs the cost of the bridge itself (not computed with DC_QUERY_COST) - _bridge.costs[j] = ret + ((((int64)tot_bridge_len * (int64)_price.build_bridge) * (int64)_bridge_type_price_mod[bridge_type]) >> 8); + _bridge.costs[j] = ret + (((int64)tot_bridge_len * _price.build_bridge * _bridge_type_price_mod[bridge_type]) >> 8); _bridge.indexes[j] = bridge_type; j++; } diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c index 9866650b2..14887f29f 100644 --- a/tunnelbridge_cmd.c +++ b/tunnelbridge_cmd.c @@ -383,7 +383,7 @@ not_valid_below:; if (_current_player < MAX_PLAYERS && !(_is_ai_player && !_patches.ainew_active)) bridge_len = CalcBridgeLenCostFactor(bridge_len); - cost += (((int64)bridge_len * (int64)_price.build_bridge) * (int64)_bridge_type_price_mod[bridge_type]) >> 8; + cost += ((int64)bridge_len * _price.build_bridge * _bridge_type_price_mod[bridge_type]) >> 8; } return cost; |