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

Fixes #1474 - I am not happy with this fix, but I don't want to modify

the font right now
This commit is contained in:
bsongis 2014-07-08 20:38:34 +02:00
parent 1afeb9f977
commit 9357c951f1

View file

@ -94,7 +94,7 @@ void lcd_putcAtt(xcoord_t x, uint8_t y, const unsigned char c, LcdFlags flags)
}
else if (flags & MIDSIZE) {
q = &font_8x10[((uint16_t)c-0x20)*16];
lcdPutPattern(x, y, q, 8, 12, flags);
lcdPutPattern(x, y, q, 8, 11, flags);
}
else if (flags & SMLSIZE) {
q = (c < 0xc0 ? &font_4x6[(c-0x20)*5] : &font_4x6_extra[(c-0xc0)*5]);