1
0
Fork 0
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:
Michael Keller 2017-10-27 00:10:15 +13:00 committed by GitHub
commit 70e19317c6

View file

@ -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: