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:
parent
1afeb9f977
commit
9357c951f1
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue