diff options
Diffstat (limited to 'apps/gui/skin_engine/wps_debug.c')
| -rw-r--r-- | apps/gui/skin_engine/wps_debug.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/wps_debug.c b/apps/gui/skin_engine/wps_debug.c index 26554b1..4186e30 100644 --- a/apps/gui/skin_engine/wps_debug.c +++ b/apps/gui/skin_engine/wps_debug.c @@ -490,7 +490,9 @@ static char *get_token_desc(struct wps_token *token, char *buf, break; #endif case WPS_VIEWPORT_ENABLE: - snprintf(buf, bufsize, "enable VP: %c", + case WPS_TOKEN_UIVIEWPORT_ENABLE: + snprintf(buf, bufsize, "enable %sVP: %c", + token->type == WPS_TOKEN_UIVIEWPORT_ENABLE ? "UI " : "", (char)token->value.i); break; case WPS_TOKEN_BUTTON_VOLUME: |