1
0
Fork 0
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:
Andre Bernet 2016-04-24 16:52:54 +04:00
parent 981d133607
commit 7d21c9eb87

View file

@ -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;