summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd.c')
-rw-r--r--firmware/drivers/lcd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 806b812b82..81dc41fff3 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -750,9 +750,8 @@ void lcd_putsldfxy(int x, int y, unsigned char *str)
750 if(lcd_x + nx > LCD_WIDTH) 750 if(lcd_x + nx > LCD_WIDTH)
751 break; 751 break;
752 752
753 lcd_clearrect (lcd_x, lcd_y, 1, ny);
754 lcd_bitmap (&char_buf[0], lcd_x, lcd_y, nx, ny, true); 753 lcd_bitmap (&char_buf[0], lcd_x, lcd_y, nx, ny, true);
755 lcd_x += nx+1; 754 lcd_x += nx;
756 } 755 }
757} 756}
758#endif 757#endif