diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-17 22:25:52 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-17 22:25:52 +0000 |
| commit | fe6cf2d0e4c4dc08576191b207c2ca201ef6033f (patch) | |
| tree | 353e8041ccd9283ae8eebf08618d58e34353ef25 | |
| parent | eefab57a1ec69cc38bb7d2060147834490116496 (diff) | |
| download | rockbox-fe6cf2d0e4c4dc08576191b207c2ca201ef6033f.zip rockbox-fe6cf2d0e4c4dc08576191b207c2ca201ef6033f.tar.gz rockbox-fe6cf2d0e4c4dc08576191b207c2ca201ef6033f.tar.bz2 rockbox-fe6cf2d0e4c4dc08576191b207c2ca201ef6033f.tar.xz | |
Fixed simulator core dump (forgot to call playlist_init)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3683 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 04f3f78..b7e0215 100644 --- a/apps/main.c +++ b/apps/main.c @@ -74,6 +74,7 @@ void init(void) settings_load(); sleep(HZ/2); tree_init(); + playlist_init(); mpeg_init( global_settings.volume, global_settings.bass, global_settings.treble, |