summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 68591ea..04ce8e3 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -56,6 +56,8 @@ int show_logo(void)
int i;
int eline;
+ lcd_clear_display();
+
for(i=0, eline=0; i< height; i+=8, eline++) {
/* the bitmap function doesn't work with full-height bitmaps
so we "stripe" the logo output */
@@ -75,10 +77,10 @@ int show_logo(void)
void show_splash(void)
{
- lcd_clear_display();
-
if (show_logo() != 0)
return;
+
+ sleep(200);
}
void version(void)