summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 6204d647b4..c00a70ee51 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -473,6 +473,11 @@ void lcd_puts(int x, int y, char *str)
473 lcd_putsxy( xmargin + x*fonts[font], 473 lcd_putsxy( xmargin + x*fonts[font],
474 ymargin + y*fontheight[font], 474 ymargin + y*fontheight[font],
475 str, font ); 475 str, font );
476#if defined(SIMULATOR) && defined(HAVE_LCD_CHARCELLS)
477 /* this function is being used when simulating a charcell LCD and
478 then we update immediately */
479 lcd_update();
480#endif
476} 481}
477 482
478/* 483/*