mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Remove second symbol in the Throttle OSD element
This commit is contained in:
parent
5673310277
commit
ba99bdae21
2 changed files with 3 additions and 5 deletions
|
@ -791,7 +791,7 @@ static void osdElementGpsHomeDirection(osdElementParms_t *element)
|
|||
element->buff[0] = osdGetDirectionSymbolFromHeading(h);
|
||||
} else {
|
||||
// We don't have a HOME symbol in the font, by now we use this
|
||||
element->buff[0] = SYM_THR1;
|
||||
element->buff[0] = SYM_TRIANGLE;
|
||||
}
|
||||
|
||||
} else {
|
||||
|
@ -1076,9 +1076,7 @@ static void osdElementStickOverlay(osdElementParms_t *element)
|
|||
|
||||
static void osdElementThrottlePosition(osdElementParms_t *element)
|
||||
{
|
||||
element->buff[0] = SYM_THR;
|
||||
element->buff[1] = SYM_THR1;
|
||||
tfp_sprintf(element->buff + 2, "%3d", calculateThrottlePercent());
|
||||
tfp_sprintf(element->buff, "%c%3d", SYM_THR, calculateThrottlePercent());
|
||||
}
|
||||
|
||||
static void osdElementTimer(osdElementParms_t *element)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue