Prevent infinite loop in the X5 keymap, and optimize the yesno context
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10690 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cbcc9db1a8
commit
1d1c59e19c
1 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
|||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id $
|
||||
*
|
||||
* Copyright (C) 2006 Jonathan Gordon
|
||||
*
|
||||
|
@ -109,7 +110,7 @@ const struct button_mapping button_context_tree_scroll_lr[] = {
|
|||
|
||||
const struct button_mapping button_context_yesno[] = {
|
||||
{ ACTION_YESNO_ACCEPT, BUTTON_SELECT, BUTTON_NONE },
|
||||
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
|
||||
LAST_ITEM_IN_LIST
|
||||
}; /* button_context_settings_yesno */
|
||||
|
||||
const struct button_mapping button_context_quickscreen[] = {
|
||||
|
@ -168,7 +169,7 @@ const struct button_mapping remote_button_context_standard[] = {
|
|||
{ ACTION_STD_MENU, BUTTON_RC_MENU|BUTTON_REL, BUTTON_RC_MENU },
|
||||
{ ACTION_STD_QUICKSCREEN,BUTTON_RC_MENU|BUTTON_REPEAT, BUTTON_RC_MENU },
|
||||
|
||||
LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
|
||||
LAST_ITEM_IN_LIST
|
||||
};
|
||||
|
||||
const struct button_mapping remote_button_context_tree[] = {
|
||||
|
|
Loading…
Reference in a new issue