summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-24 18:42:27 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-24 18:42:27 +0000
commitafe6ee4300594670795d0e7b91ca5a60160e664f (patch)
treeb069f2f4e4a57ce42b13cf4bd3056073d91e6e5e
parent26f63070c2da61a2407f1146837aa81603f7a59a (diff)
downloadrockbox-afe6ee4300594670795d0e7b91ca5a60160e664f.tar.gz
rockbox-afe6ee4300594670795d0e7b91ca5a60160e664f.zip
Fix FS#12024. Scroll acceleration did not work -- at least reported for iRiver H10 -- caused by too short duration for button repeat recognition.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29642 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c
index ffb4195cc9..eb5950bb70 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -53,7 +53,7 @@ static bool wait_for_release = false;
53static bool short_press = false; 53static bool short_press = false;
54#endif 54#endif
55 55
56#define REPEAT_WINDOW_TICKS HZ/10 56#define REPEAT_WINDOW_TICKS HZ/4
57static int last_action_tick = 0; 57static int last_action_tick = 0;
58 58
59/* software keylock stuff */ 59/* software keylock stuff */