* Zooms the globe in as close as possible. */
| 723 | * Zooms the globe in as close as possible. |
| 724 | */ |
| 725 | void Globe::zoomMax() |
| 726 | { |
| 727 | if (_zoom < _zoomRadius.size() - 1) |
| 728 | { |
| 729 | setZoom(_zoomRadius.size() - 1); |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | /** |
| 734 | * Stores the zoom used before a dogfight. |
no outgoing calls
no test coverage detected