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/playback.c | |
parent | 5b5871bd011095e11cc31a247dc9b2e104c79d79 (diff) | |
download | rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.gz rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.bz2 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.c | 2 |
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, #endif /* We can only decode jpeg for embedded AA */ - if (track_id3->embed_albumart && track_id3->albumart.type == AA_TYPE_JPG) + if (track_id3->has_embedded_albumart && track_id3->albumart.type == AA_TYPE_JPG) { user_data.embedded_albumart = &track_id3->albumart; hid = bufopen(track_id3->path, 0, TYPE_BITMAP, &user_data); |