summaryrefslogtreecommitdiff
path: root/apps/playback.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/playback.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/playback.c')
-rw-r--r--apps/playback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 36fbd88832..8fe43eb884 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -1559,7 +1559,7 @@ static bool audio_load_albumart(struct track_info *info,
1559#endif 1559#endif
1560 1560
1561 /* We can only decode jpeg for embedded AA */ 1561 /* We can only decode jpeg for embedded AA */
1562 if (track_id3->embed_albumart && track_id3->albumart.type == AA_TYPE_JPG) 1562 if (track_id3->has_embedded_albumart && track_id3->albumart.type == AA_TYPE_JPG)
1563 { 1563 {
1564 user_data.embedded_albumart = &track_id3->albumart; 1564 user_data.embedded_albumart = &track_id3->albumart;
1565 hid = bufopen(track_id3->path, 0, TYPE_BITMAP, &user_data); 1565 hid = bufopen(track_id3->path, 0, TYPE_BITMAP, &user_data);