diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-07-29 20:41:10 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-07-29 20:41:10 +0000 |
| commit | c4725df5e9013f63a8c4a4cd017948d7ab89504f (patch) | |
| tree | 083660c9c267f3e9201ed3284d710d12f7a9cf6c /apps | |
| parent | c5a26b0eb708020654a89bfc197a783694de4dcb (diff) | |
| download | rockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.zip rockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.tar.gz rockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.tar.bz2 rockbox-c4725df5e9013f63a8c4a4cd017948d7ab89504f.tar.xz | |
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')
| -rw-r--r-- | apps/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 80f2d54..e10f9ed 100644 --- a/apps/main.c +++ b/apps/main.c @@ -203,10 +203,12 @@ void init(void) global_settings.avc, global_settings.channel_config ); + /* no auto-rolo on startup any more, but I leave it here for reference */ +#if 0 if (coldstart && !usb_detect()) { /* when starting from flash, this time _we_ have to yield */ int fd; -#ifdef HAVE_LCD_CHARCELLS +#ifdef ARCHOS_PLAYER static const char filename[] = "/archos.mod"; #else static const char filename[] = "/ajbrec.ajz"; @@ -218,6 +220,7 @@ void init(void) rolo_load((char*)filename); /* start if it does */ } } +#endif // #if 0 } int main(void) |