From 1f81011f5e7554a1516981e1a71e7f3c5d36682d Mon Sep 17 00:00:00 2001 From: Kenneth Mitchell Date: Thu, 13 Sep 2018 18:24:55 -0400 Subject: [PATCH] Fix OSD Flip arrow. --- src/main/io/osd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/io/osd.c b/src/main/io/osd.c index 8f05781458..8cecdaa410 100644 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -476,8 +476,8 @@ static bool osdDrawSingleElement(uint8_t item) switch (item) { case OSD_FLIP_ARROW: { - const int angleR = attitude.values.roll; - const int angleP = attitude.values.pitch; // still gotta update all angleR and angleP pointers. + const int angleR = attitude.values.roll / 10; + const int angleP = attitude.values.pitch / 10; // still gotta update all angleR and angleP pointers. if (IS_RC_MODE_ACTIVE(BOXFLIPOVERAFTERCRASH)) { if (angleP > 0 && ((angleR > 175 && angleR < 180) || (angleR > -180 && angleR < -175))) { buff[0] = SYM_ARROW_SOUTH;