diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-03-18 07:20:14 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-03-18 07:20:14 +0000 |
commit | e1fd5c28012f8eafb2aafa084a0106968d0974b9 (patch) | |
tree | afa19f2f159499022fdea3e3dab3cb851b217d8c /apps/gui/skin_engine/wps_debug.c | |
parent | d2e2c2ad96222a55a5005edbbdea3fe755c388a5 (diff) |
fix yelllow and add those tags to the debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25240 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/wps_debug.c')
-rw-r--r-- | apps/gui/skin_engine/wps_debug.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/wps_debug.c b/apps/gui/skin_engine/wps_debug.c index 9a6d4e09cf..26554b1db6 100644 --- a/apps/gui/skin_engine/wps_debug.c +++ b/apps/gui/skin_engine/wps_debug.c @@ -504,6 +504,13 @@ static char *get_token_desc(struct wps_token *token, char *buf, case WPS_TOKEN_LANG_IS_RTL: snprintf(buf, bufsize, "lang: is_rtl?"); break; + + case WPS_TOKEN_TRACK_STARTING: + snprintf(buf, bufsize, "first %d seconds of track", token->value.i); + break; + case WPS_TOKEN_TRACK_ENDING: + snprintf(buf, bufsize, "last %d seconds of track", token->value.i); + break; default: for(i=1; i<sizeof(tokens)/sizeof(*token); i++) { |