@@ -1234,12 +1234,13 @@ void TextPageForceInfo(TableData table)
12341234 Viewer . Catalog . GetString ( "Mass" ) ,
12351235 Viewer . Catalog . GetString ( "Gradient" ) ,
12361236 Viewer . Catalog . GetString ( "Curve" ) ,
1237+ Viewer . Catalog . GetString ( "SuperElev" ) ,
12371238 Viewer . Catalog . GetString ( "Brk Frict." ) ,
12381239 Viewer . Catalog . GetString ( "Brk Slide" ) ,
12391240 Viewer . Catalog . GetString ( "Bear Temp" ) ,
12401241 Viewer . Catalog . GetString ( " " ) ,
1241- Viewer . Catalog . GetString ( "DerailCoeff" )
1242-
1242+ Viewer . Catalog . GetString ( "DerailCoeff" ) ,
1243+ Viewer . Catalog . GetString ( " " )
12431244 ) ;
12441245 TableAddLine ( table ) ;
12451246
@@ -1263,11 +1264,13 @@ void TextPageForceInfo(TableData table)
12631264 TableSetCell ( table , 12 , "{0}" , FormatStrings . FormatLargeMass ( car . MassKG , car . IsMetric , car . IsUK ) ) ;
12641265 TableSetCell ( table , 13 , "{0:F2}%" , - car . CurrentElevationPercent ) ;
12651266 TableSetCell ( table , 14 , "{0}" , FormatStrings . FormatDistance ( car . CurrentCurveRadiusM , car . IsMetric ) ) ;
1266- TableSetCell ( table , 15 , "{0:F0}%" , car . HuDBrakeShoeFriction * 100.0f ) ;
1267- TableSetCell ( table , 16 , car . HUDBrakeSkid ? Viewer . Catalog . GetString ( "Yes" ) : Viewer . Catalog . GetString ( "No" ) ) ;
1268- TableSetCell ( table , 17 , "{0} {1}" , FormatStrings . FormatTemperature ( car . WheelBearingTemperatureDegC , car . IsMetric , false ) , car . DisplayWheelBearingTemperatureStatus ) ;
1269- TableSetCell ( table , 18 , car . Flipped ? Viewer . Catalog . GetString ( "Flipped" ) : "" ) ;
1270- TableSetCell ( table , 19 , "{0:F2}{1}" , car . DerailmentCoefficient , car . DerailExpected ? "!!!" : car . DerailPossible ? "???" : "" ) ;
1267+ TableSetCell ( table , 15 , "{0}" , FormatStrings . FormatMillimeterDistanceDisplay ( car . SuperelevationM , car . IsMetric ) ) ;
1268+ TableSetCell ( table , 16 , "{0:F0}%" , car . HuDBrakeShoeFriction * 100.0f ) ;
1269+ TableSetCell ( table , 17 , car . HUDBrakeSkid ? Viewer . Catalog . GetString ( "Yes" ) : Viewer . Catalog . GetString ( "No" ) ) ;
1270+ TableSetCell ( table , 18 , "{0} {1}" , FormatStrings . FormatTemperature ( car . WheelBearingTemperatureDegC , car . IsMetric , false ) , car . DisplayWheelBearingTemperatureStatus ) ;
1271+ TableSetCell ( table , 19 , " " ) ;
1272+ TableSetCell ( table , 20 , "{0:F2}{1}" , car . DerailmentCoefficient , car . DerailExpected ? "!!!" : car . DerailPossible ? "???" : "" ) ;
1273+ TableSetCell ( table , 21 , car . Flipped ? Viewer . Catalog . GetString ( "Flipped" ) : "" ) ;
12711274 TableAddLine ( table ) ;
12721275
12731276 }
0 commit comments