summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-07-03 22:32:23 +0000
committerDave Chapman <dave@dchapman.com>2006-07-03 22:32:23 +0000
commitde1de96808ac5a64c023b876d8922e983d844d46 (patch)
treeef838ac8fbc79c2ada4b548fbda94b8b6cba8b2c /apps
parent397eb42dcf0e7f3a821b5ea505d40faf0cd9d4c1 (diff)
downloadrockbox-de1de96808ac5a64c023b876d8922e983d844d46.tar.gz
rockbox-de1de96808ac5a64c023b876d8922e983d844d46.zip
Oops. Fix broken player build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10183 a1c6a512-1295-4272-9138-f99709370657
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);