File diff r60:0819fee87a10 → r61:34b3b5b01dfc
industry_cmd.c
Show inline comments
 
@@ -1564,7 +1564,8 @@ Industry *CreateNewIndustry(uint tile, i
 
	return i;
 
}
 

	
 
static const byte _numof_industry_table[3][12] = {
 
static const byte _numof_industry_table[4][12] = {
 
	{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
 
	{0, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5},
 
	{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
 
	{0, 2, 3, 4, 6, 7, 8, 9, 10, 10, 10},
 
@@ -1574,6 +1575,8 @@ static void PlaceInitialIndustry(byte ty
 
{
 
	int num = _numof_industry_table[_opt.diff.number_industries][amount];
 

	
 
	if (_opt.diff.number_industries != 0)
 
	{
 
	assert(num > 0);
 

	
 
	do {
 
@@ -1584,6 +1587,7 @@ static void PlaceInitialIndustry(byte ty
 
		} while (--i != 0);
 
	} while (--num);
 
}
 
}
 

	
 
void GenerateIndustries()
 
{