1
0
Fork 0
forked from len0rd/rockbox

no more startup-rolo of ajbrec.ajz

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3902 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2003-07-29 20:41:10 +00:00
parent c5a26b0eb7
commit c4725df5e9

View file

@ -203,10 +203,12 @@ void init(void)
global_settings.avc, global_settings.avc,
global_settings.channel_config ); global_settings.channel_config );
/* no auto-rolo on startup any more, but I leave it here for reference */
#if 0
if (coldstart && !usb_detect()) if (coldstart && !usb_detect())
{ /* when starting from flash, this time _we_ have to yield */ { /* when starting from flash, this time _we_ have to yield */
int fd; int fd;
#ifdef HAVE_LCD_CHARCELLS #ifdef ARCHOS_PLAYER
static const char filename[] = "/archos.mod"; static const char filename[] = "/archos.mod";
#else #else
static const char filename[] = "/ajbrec.ajz"; static const char filename[] = "/ajbrec.ajz";
@ -218,6 +220,7 @@ void init(void)
rolo_load((char*)filename); /* start if it does */ rolo_load((char*)filename); /* start if it does */
} }
} }
#endif // #if 0
} }
int main(void) int main(void)