diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-01 17:49:20 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-01 17:49:20 +0000 |
| commit | c828885c4734bd2a166f3473114fffceaab64705 (patch) | |
| tree | 7ae49f66736937a0d82b50e11bc9f91b850489eb | |
| parent | c735ed79142a0260fc05d58cb0672e5d1720a26a (diff) | |
| download | rockbox-c828885c4734bd2a166f3473114fffceaab64705.zip rockbox-c828885c4734bd2a166f3473114fffceaab64705.tar.gz rockbox-c828885c4734bd2a166f3473114fffceaab64705.tar.bz2 rockbox-c828885c4734bd2a166f3473114fffceaab64705.tar.xz | |
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
| -rw-r--r-- | apps/database.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/database.c b/apps/database.c index 06bac4a..d9a59b4 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) { |