mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-20 10:32:42 -05:00
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:
|
case WPS_INCVOL | BUTTON_REPEAT:
|
||||||
#ifdef WPS_RC_INCVOL
|
#ifdef WPS_RC_INCVOL
|
||||||
case WPS_RC_INCVOL:
|
case WPS_RC_INCVOL:
|
||||||
|
case WPS_RC_INCVOL | BUTTON_REPEAT:
|
||||||
#endif
|
#endif
|
||||||
global_settings.volume++;
|
global_settings.volume++;
|
||||||
if (setvol()) {
|
if (setvol()) {
|
||||||
|
|
@ -649,6 +650,7 @@ long wps_show(void)
|
||||||
case WPS_DECVOL | BUTTON_REPEAT:
|
case WPS_DECVOL | BUTTON_REPEAT:
|
||||||
#ifdef WPS_RC_DECVOL
|
#ifdef WPS_RC_DECVOL
|
||||||
case WPS_RC_DECVOL:
|
case WPS_RC_DECVOL:
|
||||||
|
case WPS_RC_DECVOL | BUTTON_REPEAT:
|
||||||
#endif
|
#endif
|
||||||
global_settings.volume--;
|
global_settings.volume--;
|
||||||
if (setvol()) {
|
if (setvol()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue