mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
FS#10602 - show the viewport label instead of an int in the debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22727 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
aafeaad65f
commit
6d16d1cf3d
1 changed files with 3 additions and 3 deletions
|
@ -449,11 +449,11 @@ static char *get_token_desc(struct wps_token *token, char *buf,
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case WPS_VIEWPORT_ENABLE:
|
case WPS_VIEWPORT_ENABLE:
|
||||||
snprintf(buf, bufsize, "enable VP:%d",
|
snprintf(buf, bufsize, "enable VP: %c",
|
||||||
token->value.i);
|
(char)token->value.i);
|
||||||
break;
|
break;
|
||||||
case WPS_TOKEN_BUTTON_VOLUME:
|
case WPS_TOKEN_BUTTON_VOLUME:
|
||||||
snprintf(buf, bufsize, "Volume button timeout:%d",
|
snprintf(buf, bufsize, "Volume button timeout: %d",
|
||||||
token->value.i);
|
token->value.i);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue