1
0
Fork 0
forked from len0rd/rockbox

Implement feature request FS#7476: Add a "song progress percentage" WPS tag (%px) that can be used in a conditional to create custom progress meters.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13987 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-07-25 14:14:47 +00:00
parent ebc076bc15
commit 29407cbe80
5 changed files with 15 additions and 0 deletions

View file

@ -242,6 +242,10 @@ static void dump_wps_tokens(struct wps_data *data)
snprintf(buf, sizeof(buf), "time elapsed in track");
break;
case WPS_TOKEN_TRACK_ELAPSED_PERCENT:
snprintf(buf, sizeof(buf), "played percentage of track");
break;
case WPS_TOKEN_PLAYLIST_ENTRIES:
snprintf(buf, sizeof(buf), "number of entries in playlist");
break;