@@ -187,10 +187,10 @@ public OptionsForm(UserSettings settings, UpdateManager updateManager, bool init
187
187
numericAdhesionMovingAverageFilterSize . Value = Settings . AdhesionMovingAverageFilterSize ;
188
188
checkBreakCouplers . Checked = Settings . BreakCouplers ;
189
189
checkCurveSpeedDependent . Checked = Settings . CurveSpeedDependent ;
190
- checkHotStart . Checked = Settings . HotStart ;
190
+ checkBoilerPreheated . Checked = Settings . HotStart ;
191
191
checkForcedRedAtStationStops . Checked = ! Settings . NoForcedRedAtStationStops ;
192
192
checkDoorsAITrains . Checked = Settings . OpenDoorsInAITrains ;
193
- checkDieselEngineStart . Checked = ! Settings . NoDieselEngineStart ; // Inverted as "EngineStart" is better UI than "NoEngineStart"
193
+ checkDieselEnginesStarted . Checked = ! Settings . NoDieselEngineStart ; // Inverted as "EngineStart" is better UI than "NoEngineStart"
194
194
195
195
// Keyboard tab
196
196
InitializeKeyboardSettings ( ) ;
@@ -461,10 +461,10 @@ void buttonOK_Click(object sender, EventArgs e)
461
461
Settings . AdhesionMovingAverageFilterSize = ( int ) numericAdhesionMovingAverageFilterSize . Value ;
462
462
Settings . BreakCouplers = checkBreakCouplers . Checked ;
463
463
Settings . CurveSpeedDependent = checkCurveSpeedDependent . Checked ;
464
- Settings . HotStart = checkHotStart . Checked ;
464
+ Settings . HotStart = checkBoilerPreheated . Checked ;
465
465
Settings . NoForcedRedAtStationStops = ! checkForcedRedAtStationStops . Checked ;
466
466
Settings . OpenDoorsInAITrains = checkDoorsAITrains . Checked ;
467
- Settings . NoDieselEngineStart = ! checkDieselEngineStart . Checked ; // Inverted as "EngineStart" is better UI than "NoEngineStart"
467
+ Settings . NoDieselEngineStart = ! checkDieselEnginesStarted . Checked ; // Inverted as "EngineStart" is better UI than "NoEngineStart"
468
468
469
469
// Keyboard tab
470
470
// These are edited live.
0 commit comments