diff options
| author | Barry Wardell <rockbox@barrywardell.net> | 2006-09-30 09:05:07 +0000 |
|---|---|---|
| committer | Barry Wardell <rockbox@barrywardell.net> | 2006-09-30 09:05:07 +0000 |
| commit | 743ecaded8d6ea579f82f86e976ec49d674a3c25 (patch) | |
| tree | c41d114901b6872c5023f7e72a1da65f3ca8c938 /apps | |
| parent | d47983b64200c8fafef3072114edd6075b75be4d (diff) | |
| download | rockbox-743ecaded8d6ea579f82f86e976ec49d674a3c25.zip rockbox-743ecaded8d6ea579f82f86e976ec49d674a3c25.tar.gz rockbox-743ecaded8d6ea579f82f86e976ec49d674a3c25.tar.bz2 rockbox-743ecaded8d6ea579f82f86e976ec49d674a3c25.tar.xz | |
Fix bug introduced when support for the H10 Remote was added where pushing Play on the actual H10 itself would not resume playback.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11098 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/keymaps/keymap-h10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/keymaps/keymap-h10.c b/apps/keymaps/keymap-h10.c index 7cced51..ead87b8 100644 --- a/apps/keymaps/keymap-h10.c +++ b/apps/keymaps/keymap-h10.c @@ -349,7 +349,7 @@ const struct button_mapping* get_context_mapping(int context) else return button_context_listtree_scroll_with_combo; case CONTEXT_CUSTOM|CONTEXT_TREE: - return remote_button_context_tree; + return button_context_tree; case CONTEXT_SETTINGS: return button_context_settings; |