summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index e2cc454e14..e1e27c8f39 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -541,7 +541,7 @@ void lcd_putspropxy(int x, int y, char *str, int thisfont)
541 return; 541 return;
542 542
543 /* Limit to char generation table */ 543 /* Limit to char generation table */
544 if ((ch < ASCII_MIN) || (ch > 0x7a)) 544 if ((ch < ASCII_MIN) || (ch > 0xda))
545 /* replace unsupported letters with question marks */ 545 /* replace unsupported letters with question marks */
546 ch = ' '-ASCII_MIN; 546 ch = ' '-ASCII_MIN;
547 else 547 else