summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-05-29 10:58:23 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-05-29 10:58:23 +0000
commitb41208fffdc98787e52890499f6cb3b2c2eba2bc (patch)
tree14b5aae19fa0d6b269c4b3b85ac1760370e63ec3
parent84106fd917d80b63c551436f786bc8492174b224 (diff)
downloadrockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.tar.gz
rockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.zip
Don't recheck for track art when checking track art first.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21127 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/albumart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c
index 381e61d2c9..bba2f1b67e 100644
--- a/apps/recorder/albumart.c
+++ b/apps/recorder/albumart.c
@@ -167,7 +167,7 @@ bool search_albumart_files(const struct mp3entry *id3, const char *size_string,
167 dirlen = strlen(dir); 167 dirlen = strlen(dir);
168 albumlen = id3->album ? strlen(id3->album) : 0; 168 albumlen = id3->album ? strlen(id3->album) : 0;
169 169
170 for(pass = 0; pass < 2; pass++) 170 for(pass = 0; pass < 2 - track_first; pass++)
171 { 171 {
172 if (track_first || pass) 172 if (track_first || pass)
173 { 173 {