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

CF/BF - Fix GPS lat/lon symbols to use symbols that are actually in the

default CF/BF fonts.
This commit is contained in:
Hydra 2017-04-02 18:49:31 +01:00 committed by Dominic Clifton
parent 1f4644557d
commit 2fb950b543

View file

@ -234,10 +234,10 @@ static void osdDrawSingleElement(uint8_t item)
{
int32_t val;
if (item == OSD_GPS_LAT) {
buff[0] = 0xA6;
buff[0] = 0x64; // right arrow
val = GPS_coord[LAT];
} else {
buff[0] = 0xA7;
buff[0] = 0x60; // down arrow
val = GPS_coord[LON];
}
if (val >= 0) {