From c0c2f8e285c9d3834d917f780b3db5bb609258f9 Mon Sep 17 00:00:00 2001 From: Dominic Clifton Date: Mon, 9 Mar 2015 23:04:54 +0000 Subject: [PATCH] Remove a suprious newline. --- src/main/mw.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/mw.c b/src/main/mw.c index 0344bc595e..4edad40cda 100644 --- a/src/main/mw.c +++ b/src/main/mw.c @@ -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; }