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

Merge pull request #1336 from ChrisNisbet01/multiline_string_issue

Fixes issue where strings may be truncated unnecessarily.
This commit is contained in:
Bertrand Songis 2014-06-22 07:17:33 +02:00
commit d0a7d748c9

View file

@ -337,6 +337,7 @@ void lcd_putc(xcoord_t x, uint8_t y, const unsigned char c)
void lcd_putsnAtt(xcoord_t x, uint8_t y, const pm_char * s, uint8_t len, LcdFlags mode)
{
xcoord_t orig_x = x;
uint8_t const orig_len = len;
bool setx = false;
while (len--) {
unsigned char c;
@ -373,6 +374,7 @@ void lcd_putsnAtt(xcoord_t x, uint8_t y, const pm_char * s, uint8_t len, LcdFlag
setx = true;
}
else if (c == 0x1E) { //NEWLINE
len = orig_len;
x = orig_x;
y += FH;
#if defined(CPUARM)