mirror of
https://github.com/opentx/opentx.git
synced 2025-07-20 23:05:12 +03:00
[Horus] Input icons were broken
This commit is contained in:
parent
3b445321fc
commit
1c7bd63a94
1 changed files with 3 additions and 3 deletions
|
@ -37,10 +37,10 @@ char getMappedChar(unsigned char c)
|
|||
{
|
||||
if (c == 0)
|
||||
return 0;
|
||||
else if (c >= 0x80 && c <= 0x85)
|
||||
return 115 + c - 0x80;
|
||||
else
|
||||
else if (c < 0xC0)
|
||||
return c - 0x20;
|
||||
else
|
||||
return c - 0xC0 + 96;
|
||||
}
|
||||
|
||||
int getFontPatternWidth(const uint16_t * spec, int index)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue