summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/main_menu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index c21066cb5d..bce6e20976 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -153,8 +153,10 @@ bool show_info(void)
153 screens[i].clear_display(); 153 screens[i].clear_display();
154#ifdef HAVE_LCD_BITMAP 154#ifdef HAVE_LCD_BITMAP
155 screens[i].puts(0, y, str(LANG_ROCKBOX_INFO)); 155 screens[i].puts(0, y, str(LANG_ROCKBOX_INFO));
156#endif
156 } 157 }
157 y = y + 2; 158#ifdef HAVE_LCD_BITMAP
159 y += 2;
158#endif 160#endif
159 161
160#ifdef HAVE_LCD_CHARCELLS 162#ifdef HAVE_LCD_CHARCELLS
@@ -229,8 +231,10 @@ bool show_info(void)
229#endif 231#endif
230 } 232 }
231 233
234#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
232 FOR_NB_SCREENS(i) 235 FOR_NB_SCREENS(i)
233 screens[i].update(); 236 screens[i].update();
237#endif
234 238
235 /* Wait for a key to be pushed */ 239 /* Wait for a key to be pushed */
236 key = button_get_w_tmo(HZ*5); 240 key = button_get_w_tmo(HZ*5);