(svn r6394) -Fix r6393: removed a warning originally removed in r6376 accidentally readded in r6393

This commit is contained in:
bjarni 2006-09-05 13:39:38 +00:00
parent 4546700218
commit 85a71fcea9
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ CargoID FindFirstRefittableCargo(EngineID engine_type)
*/
int32 GetRefitCost(EngineID engine_type)
{
int32 base_cost;
int32 base_cost = 0;
switch (GetEngine(engine_type)->type) {
case VEH_Ship: base_cost = _price.ship_base; break;