Skip to content

Commit e5ef6c8

Browse files
committed
Use static pressure for atmospheric pressure because it works properly in KSP these days.
1 parent 210dc68 commit e5ef6c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

KerbalEngineer/Flight/Readouts/Surface/AtmosphericPressure.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public override void Draw(SectionModule section)
3636
{
3737
if (AtmosphericProcessor.ShowDetails)
3838
{
39-
DrawLine(AtmosphericProcessor.DynamicPressure.ToPressure(), section.IsHud);
39+
DrawLine(AtmosphericProcessor.StaticPressure.ToPressure(), section.IsHud);
4040
}
4141
}
4242

0 commit comments

Comments
 (0)