summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-10 14:45:09 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-10 14:45:09 +0000
commit7bccab74009fc8a0ea08f8a79e3c06bd90c9f1a1 (patch)
tree9841d0cc710d27e07f04437bd785a34939f055fa /firmware
parent8c00b4c6fb7ba1c48d984d7d816defb1c3d058aa (diff)
downloadrockbox-7bccab74009fc8a0ea08f8a79e3c06bd90c9f1a1.tar.gz
rockbox-7bccab74009fc8a0ea08f8a79e3c06bd90c9f1a1.zip
Slower scroll speed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@944 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 67d6f5e75a..9389caafbd 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -115,7 +115,7 @@ struct scrollinfo {
115 115
116static void scroll_thread(void); 116static void scroll_thread(void);
117static char scroll_stack[0x100]; 117static char scroll_stack[0x100];
118static char scroll_speed = 10; /* updates per second */ 118static char scroll_speed = 5; /* updates per second */
119 119
120static struct scrollinfo scroll; /* only one scroll line at the moment */ 120static struct scrollinfo scroll; /* only one scroll line at the moment */
121static int scroll_count = 0; 121static int scroll_count = 0;