0x004BF115
| 78 | |
| 79 | // 0x004BF115 |
| 80 | static void zoomViewIn() |
| 81 | { |
| 82 | Window* main = WindowManager::getMainWindow(); |
| 83 | if (main == nullptr) |
| 84 | { |
| 85 | return; |
| 86 | } |
| 87 | |
| 88 | main->viewportZoomIn(false); |
| 89 | TownManager::updateLabels(); |
| 90 | StationManager::updateLabels(); |
| 91 | } |
| 92 | |
| 93 | // 0x004BF12C |
| 94 | static void rotateView() |
nothing calls this directly
no test coverage detected