1
0
Fork 0
forked from len0rd/rockbox

Changed default contrast, aligned thread stack

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5801 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-02-06 02:31:46 +00:00
parent 39eb73060b
commit 23756ed5e8

View file

@ -77,7 +77,7 @@ struct scrollinfo {
static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */
static void scroll_thread(void);
static char scroll_stack[DEFAULT_STACK_SIZE];
static long scroll_stack[DEFAULT_STACK_SIZE/sizeof(long)];
static const char scroll_name[] = "scroll";
static char scroll_ticks = 12; /* # of ticks between updates*/
static int scroll_delay = HZ/2; /* ticks delay before start */
@ -104,7 +104,7 @@ static const unsigned char ones[16] = {
int lcd_default_contrast(void)
{
return 32;
return 28;
}
#ifdef SIMULATOR