Browse Source

Copter: minor takeoff param name change

No functional change
mission-4.1.18
Randy Mackay 10 years ago
parent
commit
ab608a8fcd
  1. 4
      ArduCopter/takeoff.pde

4
ArduCopter/takeoff.pde

@ -7,7 +7,7 @@
// return true if this flight mode supports user takeoff // return true if this flight mode supports user takeoff
// must_nagivate is true if mode must also control horizontal position // must_nagivate is true if mode must also control horizontal position
bool current_mode_has_user_takeoff(bool with_navigation) bool current_mode_has_user_takeoff(bool must_navigate)
{ {
switch (control_mode) { switch (control_mode) {
case GUIDED: case GUIDED:
@ -16,7 +16,7 @@ bool current_mode_has_user_takeoff(bool with_navigation)
return true; return true;
case ALT_HOLD: case ALT_HOLD:
case SPORT: case SPORT:
return !with_navigation; return !must_navigate;
default: default:
return false; return false;
} }

Loading…
Cancel
Save