1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Merge pull request #8010 from TonyBlit/fix_fs_flymode

Replaced !FS! fly mode with *FS* due to missing '!' in OSD font
This commit is contained in:
Michael Keller 2019-04-19 13:40:07 +12:00 committed by GitHub
commit 45daf97f2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -678,7 +678,7 @@ static void osdElementFlymode(osdElementParms_t *element)
// 5. ACRO
if (FLIGHT_MODE(FAILSAFE_MODE)) {
strcpy(element->buff, "!FS!");
strcpy(element->buff, "*FS*");
} else if (FLIGHT_MODE(GPS_RESCUE_MODE)) {
strcpy(element->buff, "RESC");
} else if (FLIGHT_MODE(HEADFREE_MODE)) {