Blink the industries (if hover over an industry). */
| 1429 | |
| 1430 | /** Blink the industries (if hover over an industry). */ |
| 1431 | void Blink() |
| 1432 | { |
| 1433 | if (_smallmap_industry_highlight == IT_INVALID) return; |
| 1434 | |
| 1435 | _smallmap_industry_highlight_state = !_smallmap_industry_highlight_state; |
| 1436 | |
| 1437 | this->UpdateLinks(); |
| 1438 | this->SetDirty(); |
| 1439 | } |
| 1440 | |
| 1441 | /** Force a full refresh of the map. */ |
| 1442 | void ForceRefresh() |
nothing calls this directly
no test coverage detected