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
|
||||
case WPS_TOKEN_BUTTON_VOLUME:
|
||||
if (data->button_time_volume &&
|
||||
TIME_BEFORE(current_tick, data->button_time_volume+2*HZ/3))
|
||||
return ".:|";
|
||||
TIME_BEFORE(current_tick, data->button_time_volume+HZ))
|
||||
return "v";
|
||||
return NULL;
|
||||
default:
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue