mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 17:55:19 +03:00
[Horus] DE char shift (fix #3440)
This commit is contained in:
parent
981d133607
commit
7d21c9eb87
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ void BitmapBuffer::drawSizedText(coord_t x, coord_t y, const char * s, uint8_t l
|
|||
}
|
||||
#elif defined(TRANSLATIONS_DE)
|
||||
if (c >= 0x80 && c <= 0x86) {
|
||||
c = 0x20 + 121 + c - 0x80;
|
||||
c = 0x20 + 120 + c - 0x80;
|
||||
}
|
||||
#endif
|
||||
uint8_t width;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue