summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/main_menu.c2
-rw-r--r--apps/main_menu.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index e53832a42c..68591eab45 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -34,7 +34,7 @@
34extern void tetris(void); 34extern void tetris(void);
35#endif 35#endif
36 36
37static int show_logo(void) 37int show_logo(void)
38{ 38{
39#ifdef HAVE_LCD_BITMAP 39#ifdef HAVE_LCD_BITMAP
40 unsigned char buffer[112 * 8]; 40 unsigned char buffer[112 * 8];
diff --git a/apps/main_menu.h b/apps/main_menu.h
index e7b20e1ff4..54cc6023c7 100644
--- a/apps/main_menu.h
+++ b/apps/main_menu.h
@@ -19,7 +19,7 @@
19#ifndef _MAIN_MENU_H 19#ifndef _MAIN_MENU_H
20#define _MAIN_MENU_H 20#define _MAIN_MENU_H
21 21
22extern void show_splash(void); 22extern int show_logo(void);
23extern void main_menu(void); 23extern void main_menu(void);
24 24
25#endif 25#endif