summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
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)