1
0
Fork 0
forked from len0rd/rockbox

Suggested by Thomas Martitz, don't check for track-specific files when searching for covers in PictureFlow.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21111 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-05-28 04:34:07 +00:00
parent 34589f6ccb
commit f51189cd5e
2 changed files with 12 additions and 8 deletions

View file

@ -892,7 +892,7 @@ bool get_albumart_for_index_from_db(const int slide_index, char *buf,
rb->get_metadata(&id3, fd, tcs.result);
rb->close(fd);
}
if ( search_albumart_files(&id3, "", buf, buflen) )
if ( search_albumart_files(&id3, ":", buf, buflen) )
result = true;
else
result = false;