mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 00:05:33 +03:00
Merge pull request #5855 from McGiverGim/fix_lat_lon_osd_symbols
Fix OSD GPS Lat and Lon symbols
This commit is contained in:
commit
8b01c4a88a
1 changed files with 4 additions and 2 deletions
|
@ -454,11 +454,13 @@ static bool osdDrawSingleElement(uint8_t item)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OSD_GPS_LAT:
|
case OSD_GPS_LAT:
|
||||||
osdFormatCoordinate(buff, SYM_LAT, gpsSol.llh.lat);
|
// The SYM_LAT symbol in the actual font contains only blank, so we use the SYM_ARROW_NORTH
|
||||||
|
osdFormatCoordinate(buff, SYM_ARROW_NORTH, gpsSol.llh.lat);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OSD_GPS_LON:
|
case OSD_GPS_LON:
|
||||||
osdFormatCoordinate(buff, SYM_LON, gpsSol.llh.lon);
|
// The SYM_LON symbol in the actual font contains only blank, so we use the SYM_ARROW_EAST
|
||||||
|
osdFormatCoordinate(buff, SYM_ARROW_EAST, gpsSol.llh.lon);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OSD_HOME_DIR:
|
case OSD_HOME_DIR:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue