diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-29 10:58:23 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-29 10:58:23 +0000 |
| commit | b41208fffdc98787e52890499f6cb3b2c2eba2bc (patch) | |
| tree | 14b5aae19fa0d6b269c4b3b85ac1760370e63ec3 | |
| parent | 84106fd917d80b63c551436f786bc8492174b224 (diff) | |
| download | rockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.zip rockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.tar.gz rockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.tar.bz2 rockbox-b41208fffdc98787e52890499f6cb3b2c2eba2bc.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c index 381e61d..bba2f1b 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, dirlen = strlen(dir); albumlen = id3->album ? strlen(id3->album) : 0; - for(pass = 0; pass < 2; pass++) + for(pass = 0; pass < 2 - track_first; pass++) { if (track_first || pass) { |