diff options
author | Alexander Levin <al.le@rockbox.org> | 2011-12-22 18:48:43 +0000 |
---|---|---|
committer | Alexander Levin <al.le@rockbox.org> | 2011-12-22 18:48:43 +0000 |
commit | 63c4ef9f57fa6947f9244e087180d9d5781c1032 (patch) | |
tree | 6ca4feb33d1b0cd8a63b06f291fa3b5e24032ef5 /apps/metadata/asf.c | |
parent | 5b5871bd011095e11cc31a247dc9b2e104c79d79 (diff) |
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/asf.c')
-rw-r--r-- | apps/metadata/asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/metadata/asf.c b/apps/metadata/asf.c index f5532fa628..b815c09769 100644 --- a/apps/metadata/asf.c +++ b/apps/metadata/asf.c @@ -503,7 +503,7 @@ static int asf_parse_header(int fd, struct mp3entry* id3, if (id3->albumart.type != AA_TYPE_UNKNOWN) { id3->albumart.pos = lseek(fd, 0, SEEK_CUR); id3->albumart.size = datalength; - id3->embed_albumart = true; + id3->has_embedded_albumart = true; } } |