forked from len0rd/rockbox
change the %mv timeout to 1s which works better, also change the string to show "v" instead of .:| if its not used as a conditional
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18759 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
33034838e7
commit
98fa3913f9
1 changed files with 2 additions and 2 deletions
|
|
@ -1390,8 +1390,8 @@ static const char *get_token_value(struct gui_wps *gwps,
|
||||||
#endif
|
#endif
|
||||||
case WPS_TOKEN_BUTTON_VOLUME:
|
case WPS_TOKEN_BUTTON_VOLUME:
|
||||||
if (data->button_time_volume &&
|
if (data->button_time_volume &&
|
||||||
TIME_BEFORE(current_tick, data->button_time_volume+2*HZ/3))
|
TIME_BEFORE(current_tick, data->button_time_volume+HZ))
|
||||||
return ".:|";
|
return "v";
|
||||||
return NULL;
|
return NULL;
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue