From ca64074a123eaa5b8763153debb17daad0f97685 Mon Sep 17 00:00:00 2001 From: Miguel Angel Mulero Martinez Date: Tue, 8 May 2018 13:17:26 +0200 Subject: [PATCH] Fix OSD GPS Lat and Lon symbols --- src/main/io/osd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/io/osd.c b/src/main/io/osd.c index 1f13c9cf6b..2a02e266dc 100644 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -454,11 +454,13 @@ static bool osdDrawSingleElement(uint8_t item) break; 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; 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; case OSD_HOME_DIR: