From b0fee17d6e1a463dcd84568e5997663b69488998 Mon Sep 17 00:00:00 2001 From: Marcoen Hirschberg Date: Tue, 6 Dec 2005 13:27:15 +0000 Subject: waiting is over: initial unicode commit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8169 a1c6a512-1295-4272-9138-f99709370657 --- apps/playback.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/playback.c') diff --git a/apps/playback.c b/apps/playback.c index a61b812..fc77bc1 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); -- cgit v1.1