summaryrefslogtreecommitdiff
path: root/apps/keymaps/keymap-h10.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-15 22:16:28 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-15 22:16:28 +0000
commitce05addf52ed784026d9ca8397f3c2e239ff9ed4 (patch)
tree2371e53a613848849ed7ada266b92c26fb3542d2 /apps/keymaps/keymap-h10.c
parent49cf05cb91c9160b79323bb8c798604b3cd8e2f2 (diff)
downloadrockbox-ce05addf52ed784026d9ca8397f3c2e239ff9ed4.tar.gz
rockbox-ce05addf52ed784026d9ca8397f3c2e239ff9ed4.zip
Revert recording/repeat timer for now. It is useful as a feature, but didn't receive enough testing on multiple targets, and fixing it is non-trivial. Later reversal would be complicated because of .lng spreading. * The patch should probably redone in a different way, as it's huge for what it does... * Issues: (1) The repeat timer setting has NULL pointer hits. (2) The multi-int setting screen breaks with proportional fonts, and with somewhat larger fonts. (3) On some targets, all values except the leftmost one are unreachable. * Hint: The timer itself would be much simpler if it'd just store & compare ticks (497 days before it wraps).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13172 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/keymaps/keymap-h10.c')
-rw-r--r--apps/keymaps/keymap-h10.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/keymaps/keymap-h10.c b/apps/keymaps/keymap-h10.c
index b3586413dd..1a3c81b989 100644
--- a/apps/keymaps/keymap-h10.c
+++ b/apps/keymaps/keymap-h10.c
@@ -121,10 +121,7 @@ static const struct button_mapping button_context_settings[] = {
121 { ACTION_STD_PREVREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE }, 121 { ACTION_STD_PREVREPEAT, BUTTON_LEFT|BUTTON_REPEAT, BUTTON_NONE },
122 { ACTION_STD_NEXT, BUTTON_RIGHT, BUTTON_NONE }, 122 { ACTION_STD_NEXT, BUTTON_RIGHT, BUTTON_NONE },
123 { ACTION_STD_NEXTREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE }, 123 { ACTION_STD_NEXTREPEAT, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
124 { ACTION_SETTINGS_RESET, BUTTON_POWER, BUTTON_NONE }, 124 { ACTION_SETTINGS_RESET, BUTTON_PLAY, BUTTON_NONE },
125 { ACTION_NONE, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT },
126 { ACTION_NONE, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT },
127 { ACTION_STD_OK, BUTTON_PLAY, BUTTON_NONE },
128 125
129 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD), 126 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD),
130}; /* button_context_settings */ 127}; /* button_context_settings */
@@ -306,8 +303,6 @@ static const struct button_mapping button_context_bmark[] = {
306 303
307const struct button_mapping button_context_recscreen[] = { 304const struct button_mapping button_context_recscreen[] = {
308 { ACTION_REC_PAUSE, BUTTON_PLAY, BUTTON_NONE }, 305 { ACTION_REC_PAUSE, BUTTON_PLAY, BUTTON_NONE },
309 { ACTION_STD_CANCEL, BUTTON_REW, BUTTON_NONE },
310
311 306
312 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS) 307 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS)
313}; /* button_context_recscreen */ 308}; /* button_context_recscreen */