File diff r1976:fcef181ed14a → r1977:1f8b99c96041
economy.c
Show inline comments
 
@@ -44,13 +44,13 @@ void CheckSwitchToEuro(void)
 
	}
 
}
 

	
 
void UpdatePlayerHouse(Player *p, uint score)
 
{
 
	byte val;
 
	uint tile = p->location_of_house;
 
	TileIndex tile = p->location_of_house;
 

	
 
	if (tile == 0)
 
		return;
 

	
 
	(val = 128, score < 170) ||
 
	(val+= 4, score < 350) ||
 
@@ -789,13 +789,14 @@ void StartupEconomy(void)
 
	_economy.max_loan_unround = _economy.max_loan = _opt.diff.max_loan * 1000;
 
	_economy.fluct = (byte)(Random()) + 168;
 
}
 

	
 
Pair SetupSubsidyDecodeParam(Subsidy *s, bool mode)
 
{
 
	int tile, tile2;
 
	TileIndex tile;
 
	TileIndex tile2;
 
	Industry *i;
 
	Town *t;
 
	Station *st;
 
	Pair tp;
 

	
 
	/* if mode is false, convert into plural */