summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/lcd-player.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 4429f2f506..3f9030f5ea 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -328,6 +328,9 @@ static void lcd_puts_cont_scroll(int x, int y, unsigned char *string)
328 update|=lcdx_putc(x, y, ' '); 328 update|=lcdx_putc(x, y, ' ');
329 if (update) 329 if (update)
330 xlcd_update(); 330 xlcd_update();
331#ifdef SIMULATOR
332 lcd_update();
333#endif
331} 334}
332void lcd_puts(int x, int y, unsigned char *string) 335void lcd_puts(int x, int y, unsigned char *string)
333{ 336{