Update all the links on the map. */
| 1416 | |
| 1417 | /** Update all the links on the map. */ |
| 1418 | void UpdateLinks() |
| 1419 | { |
| 1420 | if (this->map_type == SMT_LINKSTATS) { |
| 1421 | CompanyMask company_mask = this->GetOverlayCompanyMask(); |
| 1422 | if (this->overlay->GetCompanyMask() != company_mask) { |
| 1423 | this->overlay->SetCompanyMask(company_mask); |
| 1424 | } else { |
| 1425 | this->overlay->SetDirty(); |
| 1426 | } |
| 1427 | } |
| 1428 | } |
| 1429 | |
| 1430 | /** Blink the industries (if hover over an industry). */ |
| 1431 | void Blink() |
no test coverage detected