summaryrefslogtreecommitdiff
path: root/tunnelbridge_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-09-11 13:37:44 +0000
committertruelight <truelight@openttd.org>2004-09-11 13:37:44 +0000
commitda87ab9c7984ec4fa77bcb11215c4061bff94220 (patch)
treedf8d2c2befef2a667c65b0e124bda9b6665b8e24 /tunnelbridge_cmd.c
parent0b5cc6f149a8a1149a40a89c1740d8ee32521517 (diff)
downloadopenttd-da87ab9c7984ec4fa77bcb11215c4061bff94220.tar.xz
(svn r204) -Fix: deleted unneeded casts (tnx Tron)
Diffstat (limited to 'tunnelbridge_cmd.c')
-rw-r--r--tunnelbridge_cmd.c2
1 files changed, 1 insertions, 1 deletions
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;