diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-04 07:01:55 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-04 07:01:55 +0000 |
commit | 93ce7d0bee0fa1ab0034533784841d24e5d02348 (patch) | |
tree | 41edb742b8deb44041fba68bea3ce0af8b253f4a /firmware/drivers | |
parent | 2811ba6ccda477d34948acde4cc9f43e55cd9e23 (diff) |
Increased the scroll thread stack
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1327 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c index 3e23d91e25..d8a097214a 100644 --- a/firmware/drivers/lcd.c +++ b/firmware/drivers/lcd.c @@ -112,7 +112,7 @@ struct scrollinfo { }; static void scroll_thread(void); -static char scroll_stack[0x100]; +static char scroll_stack[0x800]; static char scroll_speed = 8; /* updates per second */ static char scroll_spacing = 3; /* spaces between end and start of text */ |