diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-05-28 19:26:24 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-05-28 19:26:24 +0000 |
| commit | 68030f1a427f286fa43eb863bea3ceb21eb54650 (patch) | |
| tree | 43bd2c9813bfa5e498abe7cd61b62c4452cd2070 | |
| parent | 8b6d9b341ee6e4d52a1fb586c5ebdab257006089 (diff) | |
| download | rockbox-68030f1a427f286fa43eb863bea3ceb21eb54650.zip rockbox-68030f1a427f286fa43eb863bea3ceb21eb54650.tar.gz rockbox-68030f1a427f286fa43eb863bea3ceb21eb54650.tar.bz2 rockbox-68030f1a427f286fa43eb863bea3ceb21eb54650.tar.xz | |
Accept FS#7228 by Dagni McPhee enable pitchscreen on sansa
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13505 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/keymaps/keymap-e200.c | 8 | ||||
| -rw-r--r-- | docs/CREDITS | 1 | ||||
| -rw-r--r-- | firmware/export/config-e200.h | 3 |
3 files changed, 8 insertions, 4 deletions
diff --git a/apps/keymaps/keymap-e200.c b/apps/keymaps/keymap-e200.c index 280837b..8f07cb3 100644 --- a/apps/keymaps/keymap-e200.c +++ b/apps/keymaps/keymap-e200.c @@ -178,10 +178,10 @@ static const struct button_mapping button_context_settings_right_is_inc[] = { }; /* button_context_settings_right_is_inc */ static const struct button_mapping button_context_pitchscreen[] = { - { ACTION_PS_INC_SMALL, BUTTON_UP, BUTTON_NONE }, - { ACTION_PS_INC_BIG, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE }, - { ACTION_PS_DEC_SMALL, BUTTON_DOWN, BUTTON_NONE }, - { ACTION_PS_DEC_BIG, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE }, + { ACTION_PS_INC_SMALL, BUTTON_SCROLL_DOWN, BUTTON_NONE }, + { ACTION_PS_INC_BIG, BUTTON_SCROLL_DOWN|BUTTON_REPEAT, BUTTON_NONE }, + { ACTION_PS_DEC_SMALL, BUTTON_SCROLL_UP, BUTTON_NONE }, + { ACTION_PS_DEC_BIG, BUTTON_SCROLL_UP|BUTTON_REPEAT, BUTTON_NONE }, { ACTION_PS_NUDGE_LEFT, BUTTON_LEFT, BUTTON_NONE }, { ACTION_PS_NUDGE_LEFTOFF, BUTTON_LEFT|BUTTON_REL, BUTTON_NONE }, { ACTION_PS_NUDGE_RIGHT, BUTTON_RIGHT, BUTTON_NONE }, diff --git a/docs/CREDITS b/docs/CREDITS index 65c4a51..d9d9865 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -312,3 +312,4 @@ The OpenSPC DSP emulator team The ALAC decoder team The UCL team The iPod Linux team +Dagni McPhee diff --git a/firmware/export/config-e200.h b/firmware/export/config-e200.h index edb73e8..73ff2e6 100644 --- a/firmware/export/config-e200.h +++ b/firmware/export/config-e200.h @@ -34,6 +34,9 @@ /* define this if you have access to the quickscreen */ #define HAVE_QUICKSCREEN +/* define this if you have access to the pitchscreen */ +#define HAVE_PITCHSCREEN + /* define this if you would like tagcache to build on this target */ #define HAVE_TAGCACHE |