From 4e9766477b37579bfa0249fa17818da8d348db7f Mon Sep 17 00:00:00 2001 From: Miika Pekkarinen Date: Sat, 10 Feb 2007 12:09:28 +0000 Subject: FS#6638 - Album artist and comment patch for WPS and tagcache. Export your database before updating because initialization is needed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12255 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps-common.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/gui') diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 41edc00..53b1223 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -504,6 +504,12 @@ static char* get_tag(struct wps_data* wps_data, case 'c': /* ID3 Composer */ return id3->composer; + case 'C': /* ID3 Comment */ + return id3->comment; + + case 'A': /* ID3 Albumartist */ + return id3->albumartist; + case 'y': /* year */ if( id3->year_string ) return id3->year_string; -- cgit v1.1