Fixed crash in minimap code

This commit is contained in:
Sergii Pylypenko
2019-07-11 23:04:45 +03:00
parent 8d77ef37a8
commit bd088d7906

View File

@@ -1313,9 +1313,7 @@ void SmallMapWindow::SwitchMapType(SmallMapType map_type)
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);
return max(this->min_number_of_fixed_rows, max(num_rows_linkstats, num_rows_others));
return this->min_number_of_fixed_rows;
}
/**
@@ -1377,7 +1375,6 @@ int SmallMapWindow::GetPositionOnLegend(Point pt)
uint line = (pt.y - wi->pos_y - WD_FRAMERECT_TOP) / this->row_height;
uint columns = this->GetNumberColumnsLegend(wi->current_x);
uint number_of_rows = this->GetNumberRowsLegend(columns);
number_of_rows = this->min_number_of_fixed_rows;
if (line >= number_of_rows) return -1;
bool rtl = _current_text_dir == TD_RTL;