summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/main_menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 68591eab45..04ce8e3dfa 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -56,6 +56,8 @@ int show_logo(void)
56 int i; 56 int i;
57 int eline; 57 int eline;
58 58
59 lcd_clear_display();
60
59 for(i=0, eline=0; i< height; i+=8, eline++) { 61 for(i=0, eline=0; i< height; i+=8, eline++) {
60 /* the bitmap function doesn't work with full-height bitmaps 62 /* the bitmap function doesn't work with full-height bitmaps
61 so we "stripe" the logo output */ 63 so we "stripe" the logo output */
@@ -75,10 +77,10 @@ int show_logo(void)
75 77
76void show_splash(void) 78void show_splash(void)
77{ 79{
78 lcd_clear_display();
79
80 if (show_logo() != 0) 80 if (show_logo() != 0)
81 return; 81 return;
82
83 sleep(200);
82} 84}
83 85
84void version(void) 86void version(void)