From afe0941ae5ae8f5e69d7b3935db1b168da8c14fd Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Mon, 4 Jul 2005 22:01:31 +0000 Subject: song rating support.. should probably be moved with browse id3 to a "song options" submenu in the wps context menu... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7013 a1c6a512-1295-4272-9138-f99709370657 --- apps/database.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps/database.c') diff --git a/apps/database.c b/apps/database.c index 0d0caebdc2..0e2a53b317 100644 --- a/apps/database.c +++ b/apps/database.c @@ -382,6 +382,7 @@ int rundb_init(void) audio_set_track_buffer_event(&rundb_buffer_track); audio_set_track_changed_event(&rundb_track_change); audio_set_track_unbuffer_event(&rundb_unbuffer_track); + logf("rundb inited."); #endif rundbsize=lseek(rundb_fd,0,SEEK_END); return 0; @@ -451,6 +452,7 @@ void writerundbentry(struct mp3entry *id) } void writeruntimeinfo(struct mp3entry *id) { + logf("rundb write"); if(!id->rundbhash) addrundbentry(id); else @@ -474,6 +476,7 @@ void clearruntimeinfo(struct mp3entry *id) { void loadruntimeinfo(struct mp3entry *id) { + logf("rundb load"); clearruntimeinfo(id); clearfileentryinfo(id); if(!getfentrybyfilename(id)) { -- cgit v1.2.3