From d6ab723584a34efc0d9bf8baa2582b77ca5ab18c Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Mon, 4 Jul 2005 22:10:42 +0000 Subject: moved rundb_init back to main, it has to be inited after audio_init, also, it has nothing to do with tree (though tagdb does have to do with tree) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7014 a1c6a512-1295-4272-9138-f99709370657 --- apps/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'apps/main.c') diff --git a/apps/main.c b/apps/main.c index 513cda1fcb..9b9ab0eb12 100644 --- a/apps/main.c +++ b/apps/main.c @@ -263,7 +263,7 @@ void init(void) status_init(); playlist_init(); tree_init(); - + /* No buffer allocation (see buffer.c) may take place after the call to audio_init() since the mpeg thread takes the rest of the buffer space */ mp3_init( global_settings.volume, @@ -289,6 +289,9 @@ void init(void) pcm_init_recording(); #endif talk_init(); + /* runtime database has to be initialized after audio_init() */ + rundb_init(); + #ifdef AUTOROCK { -- cgit v1.2.3