From f34e4ff6a42a003bcfc063896f390dcb94052cde Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Wed, 11 May 2005 00:12:33 +0000 Subject: Autorating should work now. at least. it would. but there is no runtime data to work with (yet) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6455 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/searchengine/dbinterface.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'apps/plugins/searchengine/dbinterface.c') diff --git a/apps/plugins/searchengine/dbinterface.c b/apps/plugins/searchengine/dbinterface.c index 7cded01..fe3ff2d 100644 --- a/apps/plugins/searchengine/dbinterface.c +++ b/apps/plugins/searchengine/dbinterface.c @@ -33,7 +33,7 @@ #define FILERECORD2OFFSET(_x_) (rb->tagdbheader->filestart + _x_ * FILEENTRY_SIZE) struct entry *currententry; - +struct dbglobals dbglobal; static struct entry *entryarray; int database_init() { @@ -51,6 +51,9 @@ int database_init() { return -1; } } + dbglobal.playcountmin=0; + dbglobal.playcountmax=0; + dbglobal.gotplaycountlimits=0; return 0; } @@ -84,6 +87,7 @@ void loadentry(int filerecord) { entryarray[filerecord].loadedfiledata=1; } currententry=&entryarray[filerecord]; + dbglobal.currententryindex=filerecord; } void loadsongdata() { -- cgit v1.1