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:
parent
1f4644557d
commit
2fb950b543
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue