diff options
author | Szymon Dziok <b0hoon@o2.pl> | 2011-12-03 23:13:17 +0000 |
---|---|---|
committer | Szymon Dziok <b0hoon@o2.pl> | 2011-12-03 23:13:17 +0000 |
commit | c31f7d0121f3d4b53edabdeeabf3774f7a8940b4 (patch) | |
tree | f32dd75b012ea36cdaf3c8846eec4a9583eb078f /uisimulator/buttonmap | |
parent | 6b5dff4c7be02d159b7c267372f63155cc31dbb8 (diff) | |
download | rockbox-c31f7d0121f3d4b53edabdeeabf3774f7a8940b4.tar.gz rockbox-c31f7d0121f3d4b53edabdeeabf3774f7a8940b4.zip |
HDD6330: introduce a new button (BUTTON_TAP), based on the hardware support for gestures. From now on some things are accessible by tapping on the vertical scroll strip. Reorganize, fix and remap some of the keymaps, add missing keymap for the recording.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31132 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/buttonmap')
-rw-r--r-- | uisimulator/buttonmap/gogear-hdd6330.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/uisimulator/buttonmap/gogear-hdd6330.c b/uisimulator/buttonmap/gogear-hdd6330.c index ee3ad56971..6451e27973 100644 --- a/uisimulator/buttonmap/gogear-hdd6330.c +++ b/uisimulator/buttonmap/gogear-hdd6330.c | |||
@@ -70,6 +70,9 @@ int key_to_button(int keyboard_button) | |||
70 | case SDLK_KP_MINUS: | 70 | case SDLK_KP_MINUS: |
71 | new_btn = BUTTON_VOL_DOWN; | 71 | new_btn = BUTTON_VOL_DOWN; |
72 | break; | 72 | break; |
73 | case SDLK_t: | ||
74 | new_btn = BUTTON_TAP; | ||
75 | break; | ||
73 | } | 76 | } |
74 | return new_btn; | 77 | return new_btn; |
75 | } | 78 | } |