summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 6204d64..c00a70e 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -473,6 +473,11 @@ void lcd_puts(int x, int y, char *str)
lcd_putsxy( xmargin + x*fonts[font],
ymargin + y*fontheight[font],
str, font );
+#if defined(SIMULATOR) && defined(HAVE_LCD_CHARCELLS)
+ /* this function is being used when simulating a charcell LCD and
+ then we update immediately */
+ lcd_update();
+#endif
}
/*