mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Merge pull request #4447 from McGiverGim/bf-fix_osd_gps_two_symbols
Fix the GPS image in OSD to use two symbols
This commit is contained in:
commit
70e19317c6
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ static void osdDrawSingleElement(uint8_t item)
|
|||
|
||||
#ifdef GPS
|
||||
case OSD_GPS_SATS:
|
||||
tfp_sprintf(buff, "%c%d", 0x1f, gpsSol.numSat);
|
||||
tfp_sprintf(buff, "%c%c%d", SYM_SAT_L, SYM_SAT_R, gpsSol.numSat);
|
||||
break;
|
||||
|
||||
case OSD_GPS_SPEED:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue