summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2003-07-29 20:41:10 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2003-07-29 20:41:10 +0000
commitc4725df5e9013f63a8c4a4cd017948d7ab89504f (patch)
tree083660c9c267f3e9201ed3284d710d12f7a9cf6c /apps/main.c
parentc5a26b0eb708020654a89bfc197a783694de4dcb (diff)
downloadrockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.tar.gz
rockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.zip
no more startup-rolo of ajbrec.ajz
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3902 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c
index 80f2d54539..e10f9ed5f1 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -203,10 +203,12 @@ void init(void)
203 global_settings.avc, 203 global_settings.avc,
204 global_settings.channel_config ); 204 global_settings.channel_config );
205 205
206 /* no auto-rolo on startup any more, but I leave it here for reference */
207#if 0
206 if (coldstart && !usb_detect()) 208 if (coldstart && !usb_detect())
207 { /* when starting from flash, this time _we_ have to yield */ 209 { /* when starting from flash, this time _we_ have to yield */
208 int fd; 210 int fd;
209#ifdef HAVE_LCD_CHARCELLS 211#ifdef ARCHOS_PLAYER
210 static const char filename[] = "/archos.mod"; 212 static const char filename[] = "/archos.mod";
211#else 213#else
212 static const char filename[] = "/ajbrec.ajz"; 214 static const char filename[] = "/ajbrec.ajz";
@@ -218,6 +220,7 @@ void init(void)
218 rolo_load((char*)filename); /* start if it does */ 220 rolo_load((char*)filename); /* start if it does */
219 } 221 }
220 } 222 }
223#endif // #if 0
221} 224}
222 225
223int main(void) 226int main(void)