From c828885c4734bd2a166f3473114fffceaab64705 Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Fri, 1 Jul 2005 17:49:20 +0000 Subject: [PATCH] No audio track changed event on archos yet, someone please implement this. Disabled runtime database on archos for now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6970 a1c6a512-1295-4272-9138-f99709370657 --- apps/database.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/database.c b/apps/database.c index 06bac4a10c..d9a59b4098 100644 --- a/apps/database.c +++ b/apps/database.c @@ -293,6 +293,9 @@ int rundb_init(void) int i, *p; #endif +#if CONFIG_HWCODEC != MASNONE + return -1; +#else if(!tagdb_initialized) /* forget it.*/ return -1; @@ -334,6 +337,7 @@ int rundb_init(void) memset(&rundbentry,0,sizeof(struct rundb_entry)); rundbsize=lseek(rundb_fd,0,SEEK_END); return 0; +#endif } void writerundbheader(void) {