diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-11-19 11:05:54 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-11-19 11:05:54 +0000 |
| commit | e75327b33249cb2656281af2bd5368fe0edd2d48 (patch) | |
| tree | 80037d0f7a7420886b678a195ce2bbb90deba951 /apps/gui | |
| parent | a8c020288c729f077b067f45f92a47bca56caae1 (diff) | |
| download | rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.zip rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.gz rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.bz2 rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.xz | |
FS#7738 - Scroll wheel acceleration for iPod
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15681 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/list.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c index 223fc2c..c430201 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -1011,8 +1011,7 @@ bool gui_synclist_do_button(struct gui_synclist * lists, int i; #ifdef HAVE_SCROLLWHEEL - int next_item_modifier = button_apply_acceleration(get_action_data(), - WHEEL_ACCELERATION_FACTOR); + int next_item_modifier = button_apply_acceleration(get_action_data()); #else static int next_item_modifier = 1; static int last_accel_tick = 0; |