0x004BF0FE
| 64 | |
| 65 | // 0x004BF0FE |
| 66 | static void zoomViewOut() |
| 67 | { |
| 68 | Window* main = WindowManager::getMainWindow(); |
| 69 | if (main == nullptr) |
| 70 | { |
| 71 | return; |
| 72 | } |
| 73 | |
| 74 | main->viewportZoomOut(false); |
| 75 | TownManager::updateLabels(); |
| 76 | StationManager::updateLabels(); |
| 77 | } |
| 78 | |
| 79 | // 0x004BF115 |
| 80 | static void zoomViewIn() |
nothing calls this directly
no test coverage detected