Adjusting var names to used units

This commit is contained in:
Lars Toenning
2019-04-29 17:56:29 +02:00
committed by Klaus Basan
parent 6eeba19f37
commit a34b222c3e
3 changed files with 6 additions and 6 deletions

View File

@@ -49,8 +49,8 @@ namespace BlackSimPlugin
{
o_flightgearData->latitudeDeg = reply.argumentAt<0>();
o_flightgearData->longitudeDeg = reply.argumentAt<1>();
o_flightgearData->altitudeM = reply.argumentAt<2>();
o_flightgearData->groundspeedMs = reply.argumentAt<3>();
o_flightgearData->altitudeFt = reply.argumentAt<2>();
o_flightgearData->groundspeedKts = reply.argumentAt<3>();
o_flightgearData->pitchDeg = reply.argumentAt<4>();
o_flightgearData->rollDeg = reply.argumentAt<5>();
o_flightgearData->trueHeadingDeg = reply.argumentAt<6>();