(svn r25312) -Fix-ish: missing spaces after comma + realignment of tables; quite boring with -x -w

This commit is contained in:
rubidium
2013-06-01 07:44:53 +00:00
parent 89a627fe4e
commit 2b2706009e
5 changed files with 1779 additions and 1779 deletions

View File

@@ -1260,7 +1260,7 @@ inline uint SmallMapWindow::GetNumberRowsLegend(uint columns) const
{
/* Reserve one column for link colours */
uint num_rows_linkstats = CeilDiv(_smallmap_cargo_count, columns - 1);
uint num_rows_others = CeilDiv(max(_smallmap_industry_count,_smallmap_company_count), columns);
uint num_rows_others = CeilDiv(max(_smallmap_industry_count, _smallmap_company_count), columns);
return max(this->min_number_of_fixed_rows, max(num_rows_linkstats, num_rows_others));
}