From ef197fbc9905e69fd76a76cd3a06284de7a044fb Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 1 Sep 2005 13:19:36 +0000 Subject: Added possibility for conditionals for the song rating and codec type WPS tags git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7440 a1c6a512-1295-4272-9138-f99709370657 --- apps/wps-display.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/wps-display.c') diff --git a/apps/wps-display.c b/apps/wps-display.c index fa6494ecee..e7ee40cf0d 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -616,6 +616,7 @@ static char* get_tag(struct mp3entry* cid3, return buf; case 'c': /* File Codec */ + *intval = id3->codectype+1; return id3_get_codec(id3); } break; @@ -834,6 +835,7 @@ static char* get_tag(struct mp3entry* cid3, return buf; case 'r': /* Rating */ *flags |= WPS_REFRESH_STATIC; + *intval = cid3->rating+1; snprintf(buf, buf_size, "%d", cid3->rating); return buf; } -- cgit v1.2.3