Remove a suprious newline.

This commit is contained in:
Dominic Clifton 2015-03-09 23:04:54 +00:00
parent d94d2dd026
commit c0c2f8e285
1 changed files with 1 additions and 2 deletions

View File

@ -703,8 +703,7 @@ void loop(void)
// If we're armed, at minimum throttle, and we do arming via the
// sticks, do not process yaw input from the rx. We do this so the
// motors do not spin up while we are trying to arm or disarm.
if (isUsingSticksForArming() &&
rcData[THROTTLE] <= masterConfig.rxConfig.mincheck) {
if (isUsingSticksForArming() && rcData[THROTTLE] <= masterConfig.rxConfig.mincheck) {
rcCommand[YAW] = 0;
}