Browse Source

Missed a Semicolon

mission-4.1.18
Jason Short 13 years ago
parent
commit
f0456dc947
  1. 4
      ArduCopter/commands_logic.pde

4
ArduCopter/commands_logic.pde

@ -422,7 +422,7 @@ static bool verify_land_sonar()
landing_boost++; // reduce the throttle at twice the normal rate landing_boost++; // reduce the throttle at twice the normal rate
if(ground_detector < 30) { if(ground_detector < 30) {
ground_detector++ ground_detector++;
}else if (ground_detector == 30){ }else if (ground_detector == 30){
ground_detector++; ground_detector++;
land_complete = true; land_complete = true;
@ -456,7 +456,7 @@ static bool verify_land_baro()
landing_boost++; landing_boost++;
if(ground_detector < 30) { if(ground_detector < 30) {
ground_detector++ ground_detector++;
}else if (ground_detector == 30){ }else if (ground_detector == 30){
ground_detector++; ground_detector++;
land_complete = true; land_complete = true;

Loading…
Cancel
Save