diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2009-02-05 20:00:29 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2009-02-05 20:00:29 +0000 |
| commit | 4c2909c91792d9b41fe93ebfb05a629209942ce4 (patch) | |
| tree | 393423bcbc0330454bc4c97eefcb11bc26049fb1 | |
| parent | ea7f1430960cc6ccc16f67fe43c95d2341033642 (diff) | |
| download | rockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.zip rockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.tar.gz rockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.tar.bz2 rockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.tar.xz | |
Gigabeat S: Fix the Yes/No screen 'Yes' buttons. r19909 got them wrong and broke the main one.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19928 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/keymaps/keymap-gigabeat-s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/keymaps/keymap-gigabeat-s.c b/apps/keymaps/keymap-gigabeat-s.c index c6c7ddb..f431f5f 100644 --- a/apps/keymaps/keymap-gigabeat-s.c +++ b/apps/keymaps/keymap-gigabeat-s.c @@ -194,7 +194,7 @@ static const struct button_mapping button_context_settings_right_is_inc[] = { }; /* button_context_settingsgraphical */ static const struct button_mapping button_context_yesno[] = { - { ACTION_YESNO_ACCEPT, BUTTON_SELECT|BUTTON_REL, BUTTON_SELECT }, + { ACTION_YESNO_ACCEPT, BUTTON_SELECT, BUTTON_NONE }, LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) }; /* button_context_settings_yesno */ @@ -414,7 +414,7 @@ static const struct button_mapping remote_button_context_bmark[] = { }; /* remote_button_context_bmark */ static const struct button_mapping remote_button_context_yesno[] = { - { ACTION_YESNO_ACCEPT, BUTTON_RC_PLAY|BUTTON_REL, BUTTON_RC_PLAY }, + { ACTION_YESNO_ACCEPT, BUTTON_RC_PLAY, BUTTON_NONE }, LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) }; /* button_context_settings_yesno */ |