summaryrefslogtreecommitdiff
path: root/apps/metadata/ape.c
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2011-12-22 18:48:43 +0000
committerAlexander Levin <al.le@rockbox.org>2011-12-22 18:48:43 +0000
commit63c4ef9f57fa6947f9244e087180d9d5781c1032 (patch)
tree6ca4feb33d1b0cd8a63b06f291fa3b5e24032ef5 /apps/metadata/ape.c
parent5b5871bd011095e11cc31a247dc9b2e104c79d79 (diff)
downloadrockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.gz
rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.zip
Rename 'mp3entry.embed_albumart' to 'mp3entry.has_embedded_albumart' (FS#12470). No functional changes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31405 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata/ape.c')
-rw-r--r--apps/metadata/ape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/metadata/ape.c b/apps/metadata/ape.c
index 8fe296c2d9..0bd2477431 100644
--- a/apps/metadata/ape.c
+++ b/apps/metadata/ape.c
@@ -159,7 +159,7 @@ bool read_ape_tags(int fd, struct mp3entry* id3)
159 { 159 {
160 id3->albumart.pos = lseek(fd, 0, SEEK_CUR); 160 id3->albumart.pos = lseek(fd, 0, SEEK_CUR);
161 id3->albumart.size = item.length - r; 161 id3->albumart.size = item.length - r;
162 id3->embed_albumart = true; 162 id3->has_embedded_albumart = true;
163 } 163 }
164 164
165 /* Seek back to this APE items begin. */ 165 /* Seek back to this APE items begin. */