0x0048B1FA
| 64 | |
| 65 | // 0x0048B1FA |
| 66 | void update() |
| 67 | { |
| 68 | if (Game::hasFlags(GameStateFlags::tileManagerLoaded) && !SceneManager::isEditorMode()) |
| 69 | { |
| 70 | const auto id = StationId(ScenarioManager::getScenarioTicks() & 0x3FF); |
| 71 | auto station = get(id); |
| 72 | if (station != nullptr && !station->empty()) |
| 73 | { |
| 74 | station->update(); |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | // 0x0048DDC3 |
| 80 | void updateLabels() |
nothing calls this directly
no test coverage detected