mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 17:55:19 +03:00
Merge pull request #3349 from craftandtheory/next
[Taranis] fixed placement of decimal point in SMLSIZE font
This commit is contained in:
commit
3d3e077fae
1 changed files with 2 additions and 2 deletions
|
@ -404,8 +404,8 @@ void lcdDrawNumber(coord_t x, coord_t y, int32_t val, LcdFlags flags, uint8_t le
|
||||||
xn = x;
|
xn = x;
|
||||||
}
|
}
|
||||||
else if (smlsize) {
|
else if (smlsize) {
|
||||||
x -= 1;
|
x -= 2;
|
||||||
lcdDrawPoint(x-1, y+5);
|
lcdDrawPoint(x, y+5);
|
||||||
if ((flags&INVERS) && ((~flags & BLINK) || BLINK_ON_PHASE)) {
|
if ((flags&INVERS) && ((~flags & BLINK) || BLINK_ON_PHASE)) {
|
||||||
lcdDrawSolidVerticalLine(x-1, y, 7);
|
lcdDrawSolidVerticalLine(x-1, y, 7);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue