diff --git a/ArduCopter/Attitude.pde b/ArduCopter/Attitude.pde index 22f3745601..02a762c635 100644 --- a/ArduCopter/Attitude.pde +++ b/ArduCopter/Attitude.pde @@ -220,6 +220,6 @@ static int get_angle_boost() { float temp = cos_pitch_x * cos_roll_x; temp = 1.0 - constrain(temp, .5, 1.0); - return (int)(temp * 60.0); + return (int)(temp * g.throttle_cruise); }