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

Font related alignments

This commit is contained in:
mhotar 2014-01-27 13:10:21 +01:00
parent cb47c03f4f
commit 5c601a0bb7

View file

@ -1174,10 +1174,10 @@ void putsTrimMode(xcoord_t x, uint8_t y, uint8_t phase, uint8_t idx, LcdFlags at
}
else {
if (mode % 2 == 0)
lcd_putcAtt(x+2, y, ':', att);
lcd_putcAtt(x, y, ':', att|FIXEDWIDTH);
else
lcd_putcAtt(x, y, '+', att);
lcd_putcAtt(x+FW, y, '0'+p, att);
lcd_putcAtt(x, y, '+', att|FIXEDWIDTH);
lcd_putcAtt(lcdNextPos, y, '0'+p, att);
}
}
#else