File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Orts.Simulation/Simulation/RollingStocks Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -322,6 +322,8 @@ public enum CABViewControlUnits
322322 METRES_SEC_SEC ,
323323 KMµHOURµHOUR ,
324324 KM_HOUR_HOUR ,
325+ KMµHOURµMIN ,
326+ KM_HOUR_MIN ,
325327 KMµHOURµSEC ,
326328 KM_HOUR_SEC ,
327329 METRESµSECµHOUR ,
Original file line number Diff line number Diff line change @@ -5195,6 +5195,10 @@ public virtual float GetDataOf(CabViewControl cvc)
51955195 data = this . AccelerationMpSS * 3.6f ;
51965196 break ;
51975197
5198+ case CABViewControlUnits . KM_HOUR_MIN :
5199+ data = this . AccelerationMpSS * 3.6f * 60.0f ;
5200+ break ;
5201+
51985202 case CABViewControlUnits . KM_HOUR_HOUR :
51995203 data = this . AccelerationMpSS * 3.6f * 3600.0f ;
52005204 break ;
@@ -5216,7 +5220,7 @@ public virtual float GetDataOf(CabViewControl cvc)
52165220 break ;
52175221 }
52185222
5219- case CABViewControlTypes . ORTS_WATER_SCOOP :
5223+ case CABViewControlTypes . ORTS_WATER_SCOOP :
52205224 data = WaterScoopDown ? 1 : 0 ;
52215225 break ;
52225226
You can’t perform that action at this time.
0 commit comments