1
0
Fork 0
forked from len0rd/rockbox

Patch FS#4744 - This patch maps the "Off" button in the pitch screen to reset the playing speed.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8902 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomas Salfischberger 2006-03-04 15:35:29 +00:00
parent 6718fd55c7
commit 625454b690
2 changed files with 6 additions and 0 deletions

View file

@ -600,6 +600,7 @@ long gui_wps_show(void)
|| CONFIG_KEYPAD == IRIVER_H300_PAD
case BUTTON_ON | BUTTON_UP:
case BUTTON_ON | BUTTON_DOWN:
case BUTTON_ON | BUTTON_OFF:
#ifdef HAVE_LCD_COLOR
lcd_set_backdrop(old_backdrop);
#endif

View file

@ -462,6 +462,11 @@ int pitch_screen(void)
used = true;
break;
case BUTTON_ON | BUTTON_OFF:
pitch = 1000;
sound_set_pitch( pitch );
break;
default:
if(default_event_handler(button) == SYS_USB_CONNECTED)
return 2;