1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-03 22:59:30 +00:00

(svn r3365) Staticise 36 functions

This commit is contained in:
tron
2006-01-05 12:40:50 +00:00
parent 980e8f525b
commit e272b03fee
37 changed files with 68 additions and 68 deletions

View File

@@ -377,7 +377,7 @@ static bool ShipAccelerate(Vehicle *v)
return (t < v->progress);
}
int32 EstimateShipCost(EngineID engine_type)
static int32 EstimateShipCost(EngineID engine_type)
{
return ShipVehInfo(engine_type)->base_cost * (_price.ship_base>>3)>>5;
}