diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2005-12-06 13:27:15 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2005-12-06 13:27:15 +0000 |
commit | b0fee17d6e1a463dcd84568e5997663b69488998 (patch) | |
tree | fffce775c4d1636a8bbc9e97669aa99b9378fc15 /apps/playback.c | |
parent | 01917ec9809f1abff87cb372b700fc09476d343e (diff) |
waiting is over: initial unicode commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8169 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.c')
-rw-r--r-- | apps/playback.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c index a61b8128ae..fc77bc12dd 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -1024,6 +1024,12 @@ static bool read_next_metadata(void) * is manipulating the playlist a lot, we will just lose battery. */ // filling = true; status = get_metadata(&tracks[next_track],fd,trackname,v1first); + /* Preload the glyphs in the tags */ + if (status) { + lcd_getstringsize(tracks[next_track].id3.title, NULL, NULL); + lcd_getstringsize(tracks[next_track].id3.artist, NULL, NULL); + lcd_getstringsize(tracks[next_track].id3.album, NULL, NULL); + } track_changed = true; close(fd); |