1
0
Fork 0
forked from len0rd/rockbox

Commit FS#12454 - Faster line scroll speed by Martin Sagmuller.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31643 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2012-01-09 03:26:03 +00:00
parent 307cb04948
commit 36613d57fa
2 changed files with 6 additions and 6 deletions

View file

@ -35,10 +35,10 @@
#endif
#include "scroll_engine.h"
static const char scroll_tick_table[16] = {
/* Hz values:
1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33 */
100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3
static const char scroll_tick_table[18] = {
/* Hz values [f(x)=100.8/(x+.048)]:
1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33, 49.2, 96.2 */
100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3, 2, 1
};
static void scroll_thread(void);