Skip to content

Commit

Permalink
Locale fix again!
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCrankLarson committed Aug 1, 2020
1 parent 1ea2065 commit da0a342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EDEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public string TrackingInfo
{
// Tracking info is: timestamp,latitude,longitude,altitude,heading,planet radius,flags

return $"{this.TimeStamp.Ticks},{this.Latitude.ToString("0.0",_enGB)},{this.Longitude.ToString("0.0", _enGB)},{this.Altitude.ToString("0.0", _enGB)},{this.Heading},{this.PlanetRadius.ToString("0.0", _enGB)},{this.Flags}";
return $"{this.TimeStamp.Ticks},{this.Latitude.ToString(_enGB)},{this.Longitude.ToString( _enGB)},{this.Altitude.ToString(_enGB)},{this.Heading},{this.PlanetRadius.ToString(_enGB)},{this.Flags}";
}
}
}
Expand Down

0 comments on commit da0a342

Please sign in to comment.