only:no need to compare ==1 for booleans in TS INI
This commit is contained in:
parent
d2039a2005
commit
a65ae4db6c
|
@ -5032,15 +5032,15 @@ dialog = tcuControls, "Transmission Settings"
|
|||
|
||||
dialog = coastingFuelCutControl, "Coasting Fuel Cutoff Settings"
|
||||
field = "Enable Coasting Fuel Cutoff", coastingFuelCutEnabled
|
||||
field = "No cut below CLT", coastingFuelCutClt, {coastingFuelCutEnabled == 1}
|
||||
field = "RPM cut fuel above", coastingFuelCutRpmHigh, {coastingFuelCutEnabled == 1}
|
||||
field = "RPM restore fuel below", coastingFuelCutRpmLow, {coastingFuelCutEnabled == 1}
|
||||
field = "Vehicle speed cut above", coastingFuelCutVssHigh, {coastingFuelCutEnabled == 1}
|
||||
field = "Vehicle speed restore below", coastingFuelCutVssLow, {coastingFuelCutEnabled == 1}
|
||||
field = "Cut fuel below TPS", coastingFuelCutTps, {coastingFuelCutEnabled == 1}
|
||||
field = "Cut fuel below MAP", coastingFuelCutMap, {coastingFuelCutEnabled == 1}
|
||||
field = "Fuel cut delay", dfcoDelay, {coastingFuelCutEnabled == 1}
|
||||
field = "Inhibit closed loop fuel after cut", noFuelTrimAfterDfcoTime, {coastingFuelCutEnabled == 1}
|
||||
field = "No cut below CLT", coastingFuelCutClt, {coastingFuelCutEnabled}
|
||||
field = "RPM cut fuel above", coastingFuelCutRpmHigh, {coastingFuelCutEnabled}
|
||||
field = "RPM restore fuel below", coastingFuelCutRpmLow, {coastingFuelCutEnabled}
|
||||
field = "Vehicle speed cut above", coastingFuelCutVssHigh, {coastingFuelCutEnabled}
|
||||
field = "Vehicle speed restore below", coastingFuelCutVssLow, {coastingFuelCutEnabled}
|
||||
field = "Cut fuel below TPS", coastingFuelCutTps, {coastingFuelCutEnabled}
|
||||
field = "Cut fuel below MAP", coastingFuelCutMap, {coastingFuelCutEnabled}
|
||||
field = "Fuel cut delay", dfcoDelay, {coastingFuelCutEnabled}
|
||||
field = "Inhibit closed loop fuel after cut", noFuelTrimAfterDfcoTime, {coastingFuelCutEnabled}
|
||||
|
||||
dialog = rotaryDialog, "Rotary"
|
||||
field = "Enable Trailing Sparks", enableTrailingSparks
|
||||
|
|
Loading…
Reference in New Issue