1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Merge pull request #3349 from craftandtheory/next

[Taranis] fixed placement of decimal point in SMLSIZE font
This commit is contained in:
Bertrand Songis 2016-03-11 07:08:02 +01:00
commit 3d3e077fae

View file

@ -404,8 +404,8 @@ void lcdDrawNumber(coord_t x, coord_t y, int32_t val, LcdFlags flags, uint8_t le
xn = x;
}
else if (smlsize) {
x -= 1;
lcdDrawPoint(x-1, y+5);
x -= 2;
lcdDrawPoint(x, y+5);
if ((flags&INVERS) && ((~flags & BLINK) || BLINK_ON_PHASE)) {
lcdDrawSolidVerticalLine(x-1, y, 7);
}