summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2009-02-05 20:00:29 +0000
committerMichael Sevakis <jethead71@rockbox.org>2009-02-05 20:00:29 +0000
commit4c2909c91792d9b41fe93ebfb05a629209942ce4 (patch)
tree393423bcbc0330454bc4c97eefcb11bc26049fb1
parentea7f1430960cc6ccc16f67fe43c95d2341033642 (diff)
downloadrockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.tar.gz
rockbox-4c2909c91792d9b41fe93ebfb05a629209942ce4.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/keymaps/keymap-gigabeat-s.c b/apps/keymaps/keymap-gigabeat-s.c
index c6c7ddbf40..f431f5fc02 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[] = {
194}; /* button_context_settingsgraphical */ 194}; /* button_context_settingsgraphical */
195 195
196static const struct button_mapping button_context_yesno[] = { 196static const struct button_mapping button_context_yesno[] = {
197 { ACTION_YESNO_ACCEPT, BUTTON_SELECT|BUTTON_REL, BUTTON_SELECT }, 197 { ACTION_YESNO_ACCEPT, BUTTON_SELECT, BUTTON_NONE },
198 198
199 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) 199 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
200}; /* button_context_settings_yesno */ 200}; /* button_context_settings_yesno */
@@ -414,7 +414,7 @@ static const struct button_mapping remote_button_context_bmark[] = {
414}; /* remote_button_context_bmark */ 414}; /* remote_button_context_bmark */
415 415
416static const struct button_mapping remote_button_context_yesno[] = { 416static const struct button_mapping remote_button_context_yesno[] = {
417 { ACTION_YESNO_ACCEPT, BUTTON_RC_PLAY|BUTTON_REL, BUTTON_RC_PLAY }, 417 { ACTION_YESNO_ACCEPT, BUTTON_RC_PLAY, BUTTON_NONE },
418 418
419 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD) 419 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
420}; /* button_context_settings_yesno */ 420}; /* button_context_settings_yesno */