summaryrefslogtreecommitdiff
path: root/apps/menus/main_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/main_menu.c')
-rw-r--r--apps/menus/main_menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index b22824d8bd..8611a66397 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -117,7 +117,8 @@ static bool show_credits(void)
117 { 117 {
118 /* show the rockbox logo and version untill a button is pressed */ 118 /* show the rockbox logo and version untill a button is pressed */
119 show_logo(); 119 show_logo();
120 get_action(CONTEXT_STD, TIMEOUT_BLOCK); 120 while (IS_SYSEVENT(get_action(CONTEXT_STD, TIMEOUT_BLOCK)))
121 ;
121 } 122 }
122 return false; 123 return false;
123} 124}