summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-09-22 05:31:28 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-09-22 05:31:28 +0000
commit6622c605b9f2f82444a46e5cb6838386659d1ab7 (patch)
tree0ef709c7378f8b2762819729c49bfe91f5178ab6 /apps/gui
parentdf32d85f31c5ac4b0aacee8de537a42db6a16215 (diff)
add the %St setting to the debug output for checkwps/parser.... needs mroe work to make it more useful
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22780 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/wps_debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/wps_debug.c b/apps/gui/skin_engine/wps_debug.c
index d4393d1090..9e02d2421c 100644
--- a/apps/gui/skin_engine/wps_debug.c
+++ b/apps/gui/skin_engine/wps_debug.c
@@ -456,6 +456,9 @@ static char *get_token_desc(struct wps_token *token, char *buf,
snprintf(buf, bufsize, "Volume button timeout: %d",
token->value.i);
break;
+ case WPS_TOKEN_SETTING:
+ snprintf(buf, bufsize, "Setting value");
+ break;
default:
snprintf(buf, bufsize, "FIXME (code: %d)",
token->type);