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:
parent
39eb73060b
commit
23756ed5e8
1 changed files with 2 additions and 2 deletions
|
|
@ -77,7 +77,7 @@ struct scrollinfo {
|
||||||
static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */
|
static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */
|
||||||
|
|
||||||
static void scroll_thread(void);
|
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 const char scroll_name[] = "scroll";
|
||||||
static char scroll_ticks = 12; /* # of ticks between updates*/
|
static char scroll_ticks = 12; /* # of ticks between updates*/
|
||||||
static int scroll_delay = HZ/2; /* ticks delay before start */
|
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)
|
int lcd_default_contrast(void)
|
||||||
{
|
{
|
||||||
return 32;
|
return 28;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef SIMULATOR
|
#ifdef SIMULATOR
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue