@@ -187,10 +187,10 @@ public OptionsForm(UserSettings settings, UpdateManager updateManager, bool init
187187 numericAdhesionMovingAverageFilterSize . Value = Settings . AdhesionMovingAverageFilterSize ;
188188 checkBreakCouplers . Checked = Settings . BreakCouplers ;
189189 checkCurveSpeedDependent . Checked = Settings . CurveSpeedDependent ;
190- checkHotStart . Checked = Settings . HotStart ;
190+ checkBoilerPreheated . Checked = Settings . HotStart ;
191191 checkForcedRedAtStationStops . Checked = ! Settings . NoForcedRedAtStationStops ;
192192 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"
194194
195195 // Keyboard tab
196196 InitializeKeyboardSettings ( ) ;
@@ -461,10 +461,10 @@ void buttonOK_Click(object sender, EventArgs e)
461461 Settings . AdhesionMovingAverageFilterSize = ( int ) numericAdhesionMovingAverageFilterSize . Value ;
462462 Settings . BreakCouplers = checkBreakCouplers . Checked ;
463463 Settings . CurveSpeedDependent = checkCurveSpeedDependent . Checked ;
464- Settings . HotStart = checkHotStart . Checked ;
464+ Settings . HotStart = checkBoilerPreheated . Checked ;
465465 Settings . NoForcedRedAtStationStops = ! checkForcedRedAtStationStops . Checked ;
466466 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"
468468
469469 // Keyboard tab
470470 // These are edited live.
0 commit comments