Rover: Fix constructor initialization order

This commit is contained in:
Dr.-Ing. Amilcar Do Carmo Lucas 2017-05-18 01:09:21 +02:00 committed by Randy Mackay
parent c1eb9fb9c3
commit aaa26af3f4
1 changed files with 1 additions and 1 deletions

View File

@ -48,8 +48,8 @@ Rover::Rover(void) :
#if FRSKY_TELEM_ENABLED == ENABLED #if FRSKY_TELEM_ENABLED == ENABLED
frsky_telemetry(ahrs, battery, sonar), frsky_telemetry(ahrs, battery, sonar),
#endif #endif
home(ahrs.get_home()),
do_auto_rotation(false), do_auto_rotation(false),
home(ahrs.get_home()),
G_Dt(0.02f) G_Dt(0.02f)
{ {
} }