Fix altitude in examples

This commit is contained in:
Mihai Dinculescu
2022-10-19 20:07:26 +01:00
parent 3a7237addf
commit 60b73c1557
5 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ struct GpsData {
lat: f64,
#[simconnect(name = "PLANE LONGITUDE", unit = "degrees")]
lon: f64,
#[simconnect(name = "PLANE LONGITUDE", unit = "degrees")]
#[simconnect(name = "PLANE ALTITUDE", unit = "feet")]
alt: f64,
}