File diff r14877:8260fce9fd4a → r14878:df7e7e7ce347
src/tunnelbridge_cmd.cpp
Show inline comments
 
@@ -71,17 +71,17 @@ void ResetBridges()
 
 * @param length Length of the bridge.
 
 * @return Price factor for the bridge.
 
 */
 
int CalcBridgeLenCostFactor(int x)
 
int CalcBridgeLenCostFactor(int length)
 
{
 
	int n;
 
	int r;
 

	
 
	if (x < 2) return x;
 
	x -= 2;
 
	if (length < 2) return length;
 
	length -= 2;
 
	for (n = 0, r = 2;; n++) {
 
		if (x <= n) return r + x * n;
 
		if (length <= n) return r + length * n;
 
		r += n * n;
 
		x -= n;
 
		length -= n;
 
	}
 
}