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 c470021..2492534 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)
void lcd_putspropxy(int x, int y, char *str, int thisfont)
{
int ch;
- int nx;
+ int nx = char_dw_8x8_prop[*str][8] >> 4;
int ny=8;
unsigned char *src;
int lcd_x = x;