1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Fix the GPS image in OSD to use two symbols

This commit is contained in:
Miguel Angel Mulero Martinez 2017-10-26 10:04:43 +02:00
parent 8f39eab1b7
commit 06728f360a

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: