summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 c470021de2..249253487d 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -527,7 +527,7 @@ void lcd_getstringsize(char *str, unsigned int font, int *w, int *h)
527void lcd_putspropxy(int x, int y, char *str, int thisfont) 527void lcd_putspropxy(int x, int y, char *str, int thisfont)
528{ 528{
529 int ch; 529 int ch;
530 int nx; 530 int nx = char_dw_8x8_prop[*str][8] >> 4;
531 int ny=8; 531 int ny=8;
532 unsigned char *src; 532 unsigned char *src;
533 int lcd_x = x; 533 int lcd_x = x;