summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/wps_debug.c
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/skin_engine/wps_debug.c
parentdf32d85f31c5ac4b0aacee8de537a42db6a16215 (diff)
downloadrockbox-6622c605b9f2f82444a46e5cb6838386659d1ab7.tar.gz
rockbox-6622c605b9f2f82444a46e5cb6838386659d1ab7.zip
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/skin_engine/wps_debug.c')
-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,
456 snprintf(buf, bufsize, "Volume button timeout: %d", 456 snprintf(buf, bufsize, "Volume button timeout: %d",
457 token->value.i); 457 token->value.i);
458 break; 458 break;
459 case WPS_TOKEN_SETTING:
460 snprintf(buf, bufsize, "Setting value");
461 break;
459 default: 462 default:
460 snprintf(buf, bufsize, "FIXME (code: %d)", 463 snprintf(buf, bufsize, "FIXME (code: %d)",
461 token->type); 464 token->type);