summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-player.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-player.c')
-rw-r--r--firmware/drivers/lcd-player.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 738816c4dc..c5915af9fa 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -343,7 +343,8 @@ void lcd_remove_cursor(void)
343 cursor.len=0; 343 cursor.len=0;
344 up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]); 344 up = lcdx_putc(cursor.x_pos, cursor.y_pos, cursor.text[0]);
345#ifdef SIMULATOR 345#ifdef SIMULATOR
346 lcd_update(); 346 if(up)
347 lcd_update();
347#endif 348#endif
348 } 349 }
349} 350}