diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-28 04:34:07 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-28 04:34:07 +0000 |
| commit | f51189cd5e11cec965b23fc9c48bcbbd214bcaa6 (patch) | |
| tree | d6dd0770b0181af3dad5714b4e95b16cbfd9157a /apps/plugins/pictureflow | |
| parent | 34589f6ccb19f2689255226fd8ee5fc612d5e632 (diff) | |
| download | rockbox-f51189cd5e11cec965b23fc9c48bcbbd214bcaa6.zip rockbox-f51189cd5e11cec965b23fc9c48bcbbd214bcaa6.tar.gz rockbox-f51189cd5e11cec965b23fc9c48bcbbd214bcaa6.tar.bz2 rockbox-f51189cd5e11cec965b23fc9c48bcbbd214bcaa6.tar.xz | |
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
Diffstat (limited to 'apps/plugins/pictureflow')
| -rw-r--r-- | apps/plugins/pictureflow/pictureflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c index 2baea2a..218f0a9 100644 --- a/apps/plugins/pictureflow/pictureflow.c +++ b/apps/plugins/pictureflow/pictureflow.c @@ -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; |