summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2009-06-15 15:46:09 +0000
committerSteve Bavin <pondlife@pondlife.me>2009-06-15 15:46:09 +0000
commit77f6f4caadfab255eed4d4cfbd471cb981ccb073 (patch)
tree9f4893b5e5b21763e9dbe9c449c34ca06ae3e7b4 /apps/main.c
parent3391bf3543876205c253544aa5ba42140b7d8ad0 (diff)
downloadrockbox-77f6f4caadfab255eed4d4cfbd471cb981ccb073.tar.gz
rockbox-77f6f4caadfab255eed4d4cfbd471cb981ccb073.zip
Fix FS#10331 and get mpegplayer working again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21293 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index 642ec5be08..c899912e22 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -336,6 +336,9 @@ static void init(void)
336 336
337 scrobbler_init(); 337 scrobbler_init();
338 cuesheet_init(); 338 cuesheet_init();
339#if CONFIG_CODEC == SWCODEC
340 tdspeed_init();
341#endif /* CONFIG_CODEC == SWCODEC */
339 342
340 audio_init(); 343 audio_init();
341 button_clear_queue(); /* Empty the keyboard buffer */ 344 button_clear_queue(); /* Empty the keyboard buffer */
@@ -549,6 +552,9 @@ static void init(void)
549 filetype_init(); 552 filetype_init();
550 scrobbler_init(); 553 scrobbler_init();
551 cuesheet_init(); 554 cuesheet_init();
555#if CONFIG_CODEC == SWCODEC
556 tdspeed_init();
557#endif /* CONFIG_CODEC == SWCODEC */
552 558
553#if CONFIG_CODEC != SWCODEC 559#if CONFIG_CODEC != SWCODEC
554 /* No buffer allocation (see buffer.c) may take place after the call to 560 /* No buffer allocation (see buffer.c) may take place after the call to