| 1900 | if (_started) |
| 1901 | ApplyView(); |
| 1902 | Display::OnSimulate(vehicle); |
| 1903 | } |
| 1904 | |
| 1905 | void DisplayMain::OnButtonClicked(int idc) |
| 1906 | { |
| 1907 | // Dispatch registered game module buttons via registry |
| 1908 | if (auto* mod = GameModuleRegistry::FindByIDC(idc)) |
| 1909 | { |
| 1910 | mod->menuAction(this); |
| 1911 | return; |
| 1912 | } |
| 1913 |
nothing calls this directly
no test coverage detected