Bugfix: Holding the remote volume button wasn't working. Someone forgot to add BUTTON_REPEAT for the remote.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6618 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
97e5f7e733
commit
9361a99cc0
1 changed files with 2 additions and 0 deletions
|
@ -636,6 +636,7 @@ long wps_show(void)
|
|||
case WPS_INCVOL | BUTTON_REPEAT:
|
||||
#ifdef WPS_RC_INCVOL
|
||||
case WPS_RC_INCVOL:
|
||||
case WPS_RC_INCVOL | BUTTON_REPEAT:
|
||||
#endif
|
||||
global_settings.volume++;
|
||||
if (setvol()) {
|
||||
|
@ -649,6 +650,7 @@ long wps_show(void)
|
|||
case WPS_DECVOL | BUTTON_REPEAT:
|
||||
#ifdef WPS_RC_DECVOL
|
||||
case WPS_RC_DECVOL:
|
||||
case WPS_RC_DECVOL | BUTTON_REPEAT:
|
||||
#endif
|
||||
global_settings.volume--;
|
||||
if (setvol()) {
|
||||
|
|
Loading…
Reference in a new issue