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:
Tomas Salfischberger 2005-06-08 17:09:34 +00:00
parent 97e5f7e733
commit 9361a99cc0

View file

@ -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()) {