summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index f06c02a4f1..f821eadc20 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -113,8 +113,6 @@ void usb_screen(void)
113 (LCD_HEIGHT-BMPHEIGHT_usblogo)/2, 113 (LCD_HEIGHT-BMPHEIGHT_usblogo)/2,
114 BMPWIDTH_usblogo, BMPHEIGHT_usblogo); 114 BMPWIDTH_usblogo, BMPHEIGHT_usblogo);
115#endif /* HAVE_LCD_COLOR */ 115#endif /* HAVE_LCD_COLOR */
116
117 lcd_update();
118#else 116#else
119 lcd_double_height(false); 117 lcd_double_height(false);
120 lcd_puts_scroll(0, 0, "[USB Mode]"); 118 lcd_puts_scroll(0, 0, "[USB Mode]");
@@ -122,6 +120,7 @@ void usb_screen(void)
122 status_set_audio(false); 120 status_set_audio(false);
123 status_set_usb(true); 121 status_set_usb(true);
124#endif /* HAVE_LCD_BITMAP */ 122#endif /* HAVE_LCD_BITMAP */
123 lcd_update();
125 124
126 gui_syncstatusbar_draw(&statusbars, true); 125 gui_syncstatusbar_draw(&statusbars, true);
127#ifdef SIMULATOR 126#ifdef SIMULATOR
@@ -315,6 +314,8 @@ static void charging_display_info(bool animate)
315 314
316 for (i = 0; i < 4; i++) 315 for (i = 0; i < 4; i++)
317 lcd_define_pattern(logo_chars[i], buf + 8 * i); 316 lcd_define_pattern(logo_chars[i], buf + 8 * i);
317
318 lcd_update();
318} 319}
319#endif /* (not) HAVE_LCD_BITMAP */ 320#endif /* (not) HAVE_LCD_BITMAP */
320 321