| 163 | } |
| 164 | |
| 165 | void LoadCheck(size_t) const override |
| 166 | { |
| 167 | GameSettings settings{}; |
| 168 | LoadSettings(GetSaveLoadSettingTable(), &settings, _settings_sl_compat); |
| 169 | /* We're only interested in landscape and starting year. */ |
| 170 | _load_check_data.landscape = settings.game_creation.landscape; |
| 171 | _load_check_data.starting_year = settings.game_creation.starting_year; |
| 172 | } |
| 173 | |
| 174 | void Save() const override |
| 175 | { |
nothing calls this directly
no test coverage detected