1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Fixed inconsistency in ANGLE mode naming.

This commit is contained in:
mikeller 2020-04-08 13:24:34 +12:00
parent 1dee491370
commit b9462c386f

View file

@ -839,7 +839,7 @@ static void osdElementFlymode(osdElementParms_t *element)
} else if (FLIGHT_MODE(HEADFREE_MODE)) {
strcpy(element->buff, "HEAD");
} else if (FLIGHT_MODE(ANGLE_MODE)) {
strcpy(element->buff, "STAB");
strcpy(element->buff, "ANGL");
} else if (FLIGHT_MODE(HORIZON_MODE)) {
strcpy(element->buff, "HOR ");
} else if (IS_RC_MODE_ACTIVE(BOXACROTRAINER)) {