diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-05-11 00:12:33 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-05-11 00:12:33 +0000 |
| commit | f34e4ff6a42a003bcfc063896f390dcb94052cde (patch) | |
| tree | 2678613f7014d9a7d86987e3dab02fdb2c211ad3 /apps/plugins/searchengine/dbinterface.c | |
| parent | f5eae08361c4b1c9d7c846c7b4b54fabf7467e31 (diff) | |
| download | rockbox-f34e4ff6a42a003bcfc063896f390dcb94052cde.zip rockbox-f34e4ff6a42a003bcfc063896f390dcb94052cde.tar.gz rockbox-f34e4ff6a42a003bcfc063896f390dcb94052cde.tar.bz2 rockbox-f34e4ff6a42a003bcfc063896f390dcb94052cde.tar.xz | |
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
Diffstat (limited to 'apps/plugins/searchengine/dbinterface.c')
| -rw-r--r-- | apps/plugins/searchengine/dbinterface.c | 6 |
1 files changed, 5 insertions, 1 deletions
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() { |