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/hosted/android | |
| parent | 5b5871bd011095e11cc31a247dc9b2e104c79d79 (diff) | |
| download | rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.zip rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.gz rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.bz2 rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.xz | |
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/hosted/android')
| -rw-r--r-- | apps/hosted/android/notification.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/hosted/android/notification.c b/apps/hosted/android/notification.c index 4432006..2c814b0 100644 --- a/apps/hosted/android/notification.c +++ b/apps/hosted/android/notification.c @@ -68,7 +68,7 @@ static void track_changed_callback(void *param) album = e->NewStringUTF(env_ptr, id3->album ?: ""); albumart = NULL; - if (id3->embed_albumart && id3->albumart.type == AA_TYPE_JPG) + if (id3->has_embedded_albumart && id3->albumart.type == AA_TYPE_JPG) { /* extract albumart to a temporary file using mmap() */ snprintf(buf, sizeof(buf), "/sdcard/rockbox/.temp_albumart_%d.jpg", thread_self()); |