summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-09-16 08:02:07 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-09-16 08:02:07 +0000
commit82e9438e2e87887c0c917fddf2fa4971261ff83d (patch)
treea53ac5f22cf8b5d13f3fad86c7a561ca70a2c8c1
parente5691c06138e722b380681e58b0e9f9644e43434 (diff)
downloadrockbox-82e9438e2e87887c0c917fddf2fa4971261ff83d.tar.gz
rockbox-82e9438e2e87887c0c917fddf2fa4971261ff83d.zip
oh, I need to commit this Ondio hack, else nobody can test with the automated build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5080 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index 270f3d6dc3..54d3955f4d 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -177,6 +177,13 @@ void init(void)
177 177
178 usb_start_monitoring(); 178 usb_start_monitoring();
179 179
180/* temporary hack for Ondio, which can't browse without disk I/O */
181#ifdef HAVE_MMC
182 while(button_get(true) & BUTTON_REL) {}; /* wait to see the logo */
183 while(1) main_menu(); /* just show the main menu, all we can do */
184#endif
185/* end of Ondio hack */
186
180 pinfo = disk_init(); 187 pinfo = disk_init();
181 if (!pinfo) 188 if (!pinfo)
182 { 189 {